| Thread | Last Post | Replies |
|
| Opinions on complexity | 17 Dec 2005 01:49 GMT | 21 |
I am thinking of developing a network application for my PhD, and it involves (among other stuff) my own implementation of the TCP/IP protocols. So, at the state the Java 1.5 version is, I need the use of JNI for the RAW sockets. (Although the use of Java is not a MUST, I am
|
| Java Plugin for 1.5.0? | 17 Dec 2005 01:47 GMT | 8 |
Where is the Java Plugin for 1.5.0? I've just updated one of my applets to use Java 1.5.0 constructs. It works fine in the AppletViewer so I decided to put it into a web page and check it out; I started bringing the HTML for the page up to the 1.5.0 level and was
|
| Creating Applet reading/writing to file | 17 Dec 2005 00:25 GMT | 8 |
I'm pretty sure you can do this but for my final project I'm gonna make an applet thats like a quiz thing and I want the persons final results to be saved to a file. so then next time someone plays, the high scores can be read from the file and they can see how they rate againts ...
|
| JApplet Structure Problem | 16 Dec 2005 23:51 GMT | 2 |
I can't run this Japplet in a web browser. But the eclipse applet viewer works... I guess it's beacause we havn't implemented the methods init, start, stop and resize.
|
| Program to read JAR's | 16 Dec 2005 22:18 GMT | 7 |
I don't know how to ask this, so I'll ask it as if I was 8 years old. I have several jars that expose several API's. For several reasons that don't need to be brought to public, I don't have the documentation for them. Is there something that can read a .jar or a .class and tell me
|
| Trouble garbage collecting SoftReference to object with finalize() | 16 Dec 2005 22:17 GMT | 4 |
I'm experimenting with the SoftReference class, for possible use in implementing a cache. I'm finding, however, that if the class I'm holding a SoftReference to has a finalize() method, then I run out of memory even if there are still SoftReference objects that should be
|
| Mindprod.com is back up | 16 Dec 2005 21:36 GMT | 8 |
http://mindprod.com is back up. It just went through a hardware upgrade to double the speed and size of its SCSI drives. It has two more upgrades to go, the first is doubling RAM to 4 GIG which should be 10 minute outage if all goes ok.
|
| Using exceptions for early exit | 16 Dec 2005 20:28 GMT | 37 |
I ran across the following article on Java exceptions and noticed this little tidbit: "Sometimes developers decide to use exception for flow-control (i.e. to throw an exception once a certain condition is met). The generation of
|
| javax.swing.ButtonGroup's add method violates implied contract | 16 Dec 2005 19:06 GMT | 12 |
Color me picky, but the javax.swing.ButtonGroup's add( AbstractButton b) method, which internally adds the AbstractButton to a Vector<AbstractButton> named "buttons", seems to me to violate the implied invariant
|
| unsigned int into byte[4] | 16 Dec 2005 15:39 GMT | 8 |
Hi, I have a problem. I want to put my unsigned int into a byte[4]. this is my class: import java.io.ByteArrayOutputStream;
|
| database data to XML | 16 Dec 2005 15:32 GMT | 1 |
I'm working on a site a part of which involves personalized data, which I'm sure has been done to death, just not by me! anyway, as I am going about designing this system, here is what I'm wondering about.
|
| JavaBeans, Enterprise Java Beans | 16 Dec 2005 15:08 GMT | 1 |
I have read that the main purpose of JavaBeans is to build reusable components that can be visually manipulated by a visual builder tool (similar to delphi, visual basic etc). Is this the main purpose?
|
| Performing Java statements dynamicly | 16 Dec 2005 13:53 GMT | 3 |
I try to embed Groovy in my application to dynamicly invoke Java objects, but sometime I feel it is not so cozy in adapting a new grammar, are there any expression language I can use as a bridge of my program and Java I can freely type and run?
|
| Worldlancer.com pays 3$ per new buyer | 16 Dec 2005 11:24 GMT | 1 |
Worldlancer.com is paying 3$ per new Buyer Signup. Its simple and easy. Signup as our affiliate and get your tracking codes. When your referral register as a Buyer on worldlancer.com, we will pay you 3$. Join our program http://www.worldlancer.com
|
| Thread behaviour | 16 Dec 2005 09:46 GMT | 4 |
If I have a program which starts 100 threads in main: for (int i = 0; i < 100; i++){ String name = Integer.toString(i); Thread temp = new Thread(new Worker());
|