| Thread | Last Post | Replies |
|
| can't get jGrasp debugger to step in to function | 16 Dec 2006 14:00 GMT | 3 |
Hi, I'm calling a method in a class, that is failing to print a line, and I want to step into that function to debug it. However, the "step in" (little arrow pointing down then right) only steps over the function. The debugger stays in the calling function.
|
| [array / List]Unknown number of objects | 16 Dec 2006 13:36 GMT | 9 |
I want to get an array of strings from a method ; as this array has an unknown number of elements can I use instaed a List to dynamically build the List and then when finished transform the List into an array in return ?
|
| Scaleable Swing components | 16 Dec 2006 09:50 GMT | 1 |
The following problem troubles me already for hours: I would like to use scaleable TextPanes in my graphical editor adapting the global scaling. MyTextPane inherites from JTextPane and overrides the paintComponent method.
|
| Is anyone just starting out with JAVA? | 15 Dec 2006 17:51 GMT | 6 |
Is this a good group to be in? Can anyone recommend a newbie group for me/us? Or mabye we can start one? Let me know, C/
|
| StringBuffer java.lang.OutOfMemoryError | 15 Dec 2006 14:40 GMT | 17 |
Hi to everyones, java.lang.OutOfMemoryError at java.lang.StringBuffer.insert(Compiled Code) There is about 8200 characters in the buffer including about 257
|
| What does the "import" statement do for the program on earth? | 15 Dec 2006 09:44 GMT | 2 |
I am a beginner of Java. I don't understand what the the "import" statement do for the program clearly. For example, I just write a program like this:
|
| Can you declare classes' variable in constructor? | 15 Dec 2006 04:44 GMT | 6 |
Hello. I have a class which will need string arrays. Normally I declare them as instance variables in the class. But, can these instance variables be part of the constructor? Here is an example. (1) shows how I usually declare and instantiate class variables. (2) shows what I
|
| How to control enforce users to only seeing webpages in sequence? | 15 Dec 2006 00:42 GMT | 8 |
I have a bunch of webpages where a user has to fill in details before continueing- the sequence goes like: - page 1 - user fills in details then clicks "continue" button - page 2 - user fills in details then click "continue" button
|
| Get CPU and Memory Info as well as OS info at runtime | 14 Dec 2006 15:48 GMT | 1 |
I was wondering if there is a way that Java can query the JVM at runtime to find what Operating System the JVM is running on Also I need to be able to find the maximum and current CPU and memory Utilisation at any point during the runtime.
|
| Do you know how Java read character value greater than 128/255? | 14 Dec 2006 00:47 GMT | 6 |
I have BufferedReader bufferedReader = new BufferedReader(new FileReader(inputfile_name)); int c;
|
| cacerts files | 13 Dec 2006 14:53 GMT | 7 |
There is cacerts files by the dozen. Wich one is the good one? C:\Documents and Settings\Jean Pierre\.keystore C:\Documents and Settings\Jean Pierre\Application Data\Sun\Java\Deployment\security\deployment.certs" <=====For this
|
| String.replace | 13 Dec 2006 05:15 GMT | 1 |
It does not work has expected. Properties sysprops = System.getProperties(); strbuf.append(sysprops); String liste = strbuf.toString();
|
| about java | 12 Dec 2006 20:12 GMT | 7 |
can i change the resolution for image in java without change the clear??
|
| Reading objects from random access file | 12 Dec 2006 19:23 GMT | 6 |
Hi im pretty new to java i searched in group but i couldnt understand solutions i hava a class Student and every student has Name, Surname, and an Arraylist which we dont know the length if i need to give example
|
| Using Servlets to Parse XML | 12 Dec 2006 19:12 GMT | 1 |
I would like to create a servlet, which when accessed will retrieve an XML file, remotely over the Internet, and parse it to the browser's screen. Can anyone point to example servlet code that parses XML? Thanks.
|