| Thread | Last Post | Replies |
|
| Good books for Web Component Developer Certification (CX-310-081) | 25 Feb 2006 02:30 GMT | 1 |
Hi..All, Can you please recommend some good books for Web Component Developer Certification (CX-310-081)? Regards
|
| How do I store my objects? XML/binary/schema | 25 Feb 2006 02:25 GMT | 3 |
I noticed with .Net the framework provides a simple ability to serialize an object to XML and back again. Does Java have the same functionality? Also, I have a system which needs to persist objects and then perform
|
| Some kind of slow leak? | 25 Feb 2006 00:13 GMT | 3 |
I have a Java app I'm developing here that seems to have developed a slow leak. It spawns around 100 threads, which do various things with some shared resources (mainly collections); the resources are locked (in a fixed
|
| JTree.... | 24 Feb 2006 22:45 GMT | 1 |
How does one go about getting the index of the selected node in a jtree?
|
| Learning Spring, Velocity, Hibernate and JSP templates | 24 Feb 2006 22:13 GMT | 2 |
I am strongly considering acquiring a good working knowledge of Spring, Velocity, Hibernate, and JSP templates in the next several weeks to improve my employability. This has raised some questions that you can help me with: 1. Are these tools widely used in the industry? Are they ...
|
| periodically doing a task inside run method of a thread | 24 Feb 2006 21:58 GMT | 3 |
I need to have a task repeated periodically in a thread . for now I'm using inside the run method : long pausetime = 2000; long p = System.currentTimeMillis();
|
| Which of these is better casting or toString() | 24 Feb 2006 21:49 GMT | 7 |
List lst = new ArrayList(); lst.add("a"); // more add statements here.. ((String) lst.get(j)).toUpperCase()
|
| Can't import java.util.concurrent in Eclipse | 24 Feb 2006 20:58 GMT | 3 |
I just started using IBM RAD thats based on eclipse and am trying to import the java.util.concurrent package but the package cannot be resolved. Anyone know how I can get the import to work? Thanks a lot!
|
| J2ME milliseconds from epoch to given date | 24 Feb 2006 20:56 GMT | 4 |
I want some code which will give me the number of milliseconds since the Java epoch which is January 1, 1970. I try the following code, but, alas, every time I run it I get a different value instead of a constant. Any ideas of what
|
| show both ip adresses | 24 Feb 2006 20:53 GMT | 3 |
i`ve got this computer with 2 network cards and now i want to write a programm which shows both ip-adresses, is, and if so, how is that possible? best regards
|
| How to insert a Publickey in a Keystore file without using keytol and wihtout a cert file ? | 24 Feb 2006 20:50 GMT | 2 |
After i read java.security.cert and java.security.keystore i didn't find any solution of my problem. The problem is that i want to create n keystores without using the keytool because i want to export the solution to use with smartcards.
|
| to use import java.lang.* or import java.lang.Math or none at all? | 24 Feb 2006 20:48 GMT | 13 |
i knew that by default all java.lang classes will be imported by the compiler during compilation. but, to make it easier for the computer, should i specify which class i really will be using? does this action will boost the performance during compilation and runtime or not a
|
| how to write a hash table to file | 24 Feb 2006 20:46 GMT | 3 |
I'm trying to found out how to write a hash table to a file in java. Can someone please help me or point me to a good tutorial. Thank you
|
| Singular and Plural Classes - conventions | 24 Feb 2006 20:41 GMT | 17 |
This will be familiar to most I imagine. You have an entity say a Person and you need to manage these so we have a Persons class. My projects are now becoming littered with 2 classes for most entities
|
| NoClassDefFoundError problem | 24 Feb 2006 20:34 GMT | 2 |
I have a small java program(the smiplest I can have). When I tried to run after compling it, it shows the error: Exception in thread "main" java.lang.NoClassDefFoundError: test what might go wrong?
|