| Thread | Last Post | Replies |
|
| the right way to kill a java thread on Windows? | 03 May 2005 02:55 GMT | 5 |
I used NetBeans + JDK 1.5.2 to write a simple program using the SocketServer class, on my Windows 2000 pc. The program dies not die when I kill it. I kill it by right-clicking on the process in the execution window and selecting "terminate." It appears to die within NetBeans but ...
|
| MVC Multiple Models | 03 May 2005 00:09 GMT | 1 |
I am looking over the initial design for my application and I see many models. I am trying to figure out how to keep all my application models up to date. I have one main application model that I did to store all the
|
| Applets, Seperate Frames, and CPU cycles/Efficiency | 03 May 2005 00:08 GMT | 4 |
If I have one Applet that is cpu intensive, will running a second applet in another frame improve this second applet's performance? Worded another way: Will the second applet
|
| Paypal $5.00 for a simple Blogger CSS page template Design - URGENT | 02 May 2005 21:42 GMT | 6 |
I am proposing to send you $5.00 in Paypal for a CSS Template that should be as such: 1. Page Info o CSS
|
| Java Newbie... Read file at HTTP | 02 May 2005 21:36 GMT | 8 |
I need the code for "loading" a picture over www (ex. http://www.xyz.com/pic.jpg). I need only to load it, I do not need to save it on my disk or something like that... Sounds useless and it is... But I want to learn it and I need it :-)
|
| Visualization tools like that of theBrain | 02 May 2005 20:24 GMT | 1 |
I am seeking for a framework to present my network-like structures in the way as theBrain does. I seems to hear there is a API set for programming theBrain but I can hardly find it and doubt about its license maybe frustrate my attempt of open source my effort. So is
|
| changing the guts of an enum value | 02 May 2005 19:18 GMT | 1 |
Lets say I have something like this: // yes this compiles I cut and pasted this from a example I wrote // specificallu for this post public enum foo {
|
| File.getName() yes and no? | 02 May 2005 18:06 GMT | 1 |
Having a hard time understanding this behavior File(".") File("/") Given the File object above, output of ":::" + x.getName() + ":::" is
|
| RegEx Woes! Please Help, Simple Question | 02 May 2005 17:07 GMT | 5 |
Hi Guys/Gals I got a quick question on regex. My input string consists of two characters: [a-z][a-z].. However, I only want to match if the two characters are different.
|
| Saving values in UPPERCASE in a database | 02 May 2005 17:05 GMT | 6 |
When connecting to a database from a JSP-file, I write for instance: sql = "insert into person values(" + newNr + ", '" + forName + "', '" + lastName + "')"; Statement stmt = null;
|
| Generic Newbie HashMap Query | 02 May 2005 17:02 GMT | 9 |
import java.util.HashMap; public class GenericMapTest { private HashMap<String, ? > map = null;
|
| Comparables and Generics | 02 May 2005 15:30 GMT | 14 |
How do I express "A Comparable that can be compared to itself" in generics? I have a method that takes as parameter an array of Comparables. Whilst trying to "modernize" this code, I can no longer write simply: public void myMethod(Comparable[] primaryKeyValues)
|
| Performance of isDirecory() | 02 May 2005 14:19 GMT | 10 |
I have a customer that is reporting severe performance problems with Jurtle, my beginners Java IDE. He is in a high school setting where they netboot all their Macs. The students home directories are kept on the server. Jurtle displays a listing of the current directory, showing ...
|
| Buffered image using float data | 02 May 2005 12:56 GMT | 5 |
Does anyone know whether there's anwyay to use floating point data to make a greyscale BufferedImage? I'd like this because I want an image I can edit and get the results directly in floating point format. There's a unsigned 16bit format
|
| String matches() method | 02 May 2005 12:52 GMT | 5 |
I have a string, for example: String str = "aaab"; I would like to use the matches() method of the String class to test the string's first 3 characters are identical.
|