| Thread | Last Post | Replies |
|
| How does 'jps' identify all the JVMs on the current host? | 17 Nov 2005 21:04 GMT | 1 |
What maechanism does jps use to find JVM's running on the local host? Is the source to jps available? Thanks, John
|
| help with JTable and Table Models | 17 Nov 2005 20:02 GMT | 2 |
Hi all I am having a bit of trouble with my TableModel class that extends AbstractTableModel. My code so far is ------------------------------------------------------------------------
|
| Need a Swing JSplitButton | 17 Nov 2005 19:59 GMT | 1 |
Like the back/forward button in a browser, where it is basically 2 buttons, one on the left is the large button and on the right is an arrow that will pop-up a JMenu when clicked. This would look pretty much like a JButton with th4e JComboBox's arrow
|
| Redundancy Elimination? | 17 Nov 2005 19:39 GMT | 15 |
I just wrote this piece of code for moving an object given an intial position, velocity and acceleration. protected float X=0.0f; protected float Y=0.0f;
|
| Repainting Panels When Necessary | 17 Nov 2005 19:20 GMT | 2 |
I created a program which draws elipses on some panels. When I activate another window such as a Web Browser and return(re-activate) to my program, the graphic objects of mine remain disappeared.
|
| DecimalFormat without comma | 17 Nov 2005 19:06 GMT | 3 |
I want to format the number without the comma. int num = 1000.123; java.text.numberFormat nf = java.text.numberFormat.getInstance(); nf.setMaximumFractionDigits( 10 );
|
| Garbage Collection of Threads | 17 Nov 2005 17:19 GMT | 8 |
I have a problem with instanciating many threads and the destruction of these objects. Does the garbage collector actually delete threads? I'm writing a network application which has to create 2 threads which
|
| Algorithm - UDP Throughput Calculation | 17 Nov 2005 16:09 GMT | 2 |
Wonder can anyone help. After using perl happily i am turning my attention to Java as a better language for GUI development. However i came across a strange thing that i'm sure i'll come up against in Java given that i'll be using the same algorithm. I had written a udp tool
|
| Question about memory use in JAI | 17 Nov 2005 15:58 GMT | 4 |
I have a general question about memory usage in JAI. When I issue a JAI.create() command, like the following: PlanarImage image = (PlanarImage) JAI.create("fileload", path); I notice that the javaw.exe process jumps up to something like 50 Mb.
|
| Automated Test Data for XML files | 17 Nov 2005 14:14 GMT | 2 |
I have an XML file which shows the structure of a certain document, may be a deplyment descriptor or so. Is there any open source tool with which I can create some test data for the XML ? Best regards,
|
| Deserialization bug: NullPointerException thrown during HashMap.hash() | 17 Nov 2005 14:12 GMT | 7 |
I am attempting to serialize objects that have sets, but there is a NullPointerException thrown when deserializing. The exception is thrown at a point where deserialization calls on one of the my class's hashCode() methods. Though the fields are null at this point
|
| quicktime for java | 17 Nov 2005 13:08 GMT | 1 |
Exception in thread "main" java.lang.UnsatisfiedLinkError: no QTJava in java.lib rary.path at java.lang.ClassLoader.loadLibrary(Unknown Source)
|
| What does 'Struts' mean? | 17 Nov 2005 12:47 GMT | 12 |
I have been using Struts for a while. But I still don't know why this Framework is named 'Struts'. Anyone can tell me?
|
| UDP comm | 17 Nov 2005 12:28 GMT | 6 |
How come I have to specify the size of the input buffer when receiving UDP DatagramPackets? I basically want to receive as many bytes as the sent datagram contains? andersen
|
| CallBack JNI help | 17 Nov 2005 12:19 GMT | 11 |
Can somebody help me please how I can call my callback function in C++: Java: class DirectoryWatcher { public native void watchDirectory();
|