| Thread | Last Post | Replies |
|
| DecimalFormat problem | 11 Mar 2004 03:49 GMT | 2 |
I'm currently writing a BMI calculator and I have problems with the DecimalFormat. //if calculate is pressed if(c.equals("b"))
|
| copying a class | 11 Mar 2004 01:14 GMT | 7 |
Is there an easy way to completely copy a class? say I have; FOO A; FOO B; and I do:
|
| applet mousemove | 11 Mar 2004 00:41 GMT | 5 |
i want to make a little image follow the mouse in applet.what is the best way to do that....i draw image in the place of a coursor, but as it moves new images are created.how to erase the old ones?.....i;m beginer in java. thank you
|
| What is the difference between J2SE "Standard Edition" and J2EE "Enterprise Edition" ? | 10 Mar 2004 22:07 GMT | 8 |
When I go to the web site e.g. http://java.sun.com/j2ee/1.4/download-dr.html the two versions are offered for download but I found nowhere an table comparing the features of the both releases. Could someone explain me the differences?
|
| Changing Only A Character Within A String | 10 Mar 2004 21:09 GMT | 6 |
I was looking at replacing only a character withing a string by position, not global replace: http://dlt.ncsa.uiuc.edu/javadoc/grunk/ncsa/emerge/util/StringUtils.html How shall I go about doing it?
|
| GUI / Class instantiation problem... | 10 Mar 2004 20:55 GMT | 2 |
This is not a homework problem!! I have two classes, ClassA and ClassB. ClassA contains main() and handles all the Swing code (sets up the frame and text boxes etc)
|
| Confused with java classes | 10 Mar 2004 18:16 GMT | 2 |
hi, I am just start learning java and i got this problem I tried to create a class called testing and in the main file i create 2 object classes, but they are always linked togeter.
|
| use java and co by its name | 10 Mar 2004 18:11 GMT | 9 |
I have j2sdk for linux. I am not able to execute javac, java and others by their names. To execute them, I need to do ./javac to compile the program. Can't I execute them just by using their names. regards,
|
| create new String without newlines and " | 10 Mar 2004 17:47 GMT | 1 |
I am parsing a file to retrieve some data , between the tags: <Foundation.Extension_Mechanisms.TaggedValue.value>int:adminis trativeState=1; int:alarmStatus=0;
|
| Help with resetting a class. *Beginner | 10 Mar 2004 15:25 GMT | 3 |
The following 3 private methods are used to set the color, radius, and location of an object - straightforward enough! How can I use a 4th method to reset the first three after an initial instance has been created? private void setColor();
|
| Lucene search problem | 10 Mar 2004 14:32 GMT | 1 |
I've got a problem with Lucene and hopefully somebody can help. I've indexed a whole html site using lucene and the htmlparser from sourceforge. The problem is terms that appear in the page do not bring back pages in the search results. For example, if I search for
|
| help with applet please | 10 Mar 2004 07:20 GMT | 2 |
how do I manipulate parameters for an applet runtime? I mean it is easy to pass parameters in the applet tag with the param name thing, but how can these parameters be changed runtime?e.g. due to interaction of hte applet with the outside document, or the outside document
|
| creating my own Events? | 10 Mar 2004 07:00 GMT | 2 |
Is there a recommended way of implementing events? I have a data object, that should inform my GUI whenever it's contents changes, so that the GUI can update it's view. What is the best way of implementing this? Should I use the listener system? I know how to add
|
| Not understandable Thread behaviour | 10 Mar 2004 00:26 GMT | 11 |
I found that if I do not include public void main() method in class extending Thread class, nothing can be output by it's run() method even if .start() being called on that Thread instance. Why will that happen ?
|
| design question | 09 Mar 2004 23:39 GMT | 9 |
Say I have an abstract class A and 2 subclasses, B and C. Classes B and C contain a static "type" field that acts as a key to allow instances of them to be built from details in a DB. Only B and C know what their own "type" field is to provide encapsulation.
|