| Thread | Last Post | Replies |
|
| close swing form application | 24 Jun 2008 04:06 GMT | 12 |
What is the correct way to close java visual aplication based on swing components. I would like to do this using jMenuItem. I use NetBeans IDE Thank you
|
| Can't get client and server to communicate | 23 Jun 2008 23:59 GMT | 7 |
hiya The main problem is that server doesn’t receive any messages from client( it receives a message from client only when I terminate the client process ).
|
| Stages of a project production | 23 Jun 2008 22:56 GMT | 6 |
analysis design development testing
|
| please debug this generic program | 23 Jun 2008 22:36 GMT | 5 |
//Stats.java package tutorial; public class Stats<T> { T[] nums;
|
| Even the intelligents cannot get through interviews. Why? Know more about Java interviews. | 23 Jun 2008 20:14 GMT | 1 |
Clearing Interviews - Useful Questions & Tips I am a 'senior software analyst' with lot of exposure to J2EE technologies. I have compiled all the interview questions and shared all my experiences. I myself am in the recruitment panel. So learn
|
| little iterator problem | 23 Jun 2008 17:21 GMT | 9 |
How can I make something like List<MyClass> list;///or any other Collection Iterator<MyClass> it = list.iterator(); Iterator<MyClass> next = ++it;
|
| MDB or Web Service? | 23 Jun 2008 17:12 GMT | 4 |
At the risk of starting a "preferences war", I often pondered this question... When would I use one or the other to implement a set of online services? What are the pros and cons of using one over the other? Has anyone come
|
| Constructor Generic Type Inference | 23 Jun 2008 13:32 GMT | 9 |
Most programmers seem to agree that it is tedious to have to type long generic type parameters twice, when the second copy is effectively redundant: MyGenericClass<String, Map<Integer, String>> myThing =
|
| Need a way to automatically check thread/method correspondence | 23 Jun 2008 11:44 GMT | 5 |
I'm in the process of converting a lot of code from being single-threaded (everything in the AWT EDT) to multi-threaded. The code is debugger-related and uses the JDI. All JDI activity will take place on a single
|
| Solving simple mathematical equation solving speed | 23 Jun 2008 09:01 GMT | 16 |
I have an equation that gets executing many thousands of times by an algorithm. When I it is written in code the algorithm is quite fast. However, I want the user to be able to define the equation themselves, to solve it this way I use java expression parser (JEP).
|
| Default JVM flags | 22 Jun 2008 23:52 GMT | 7 |
I always run a Java class which takes a lot of memory, and every time I have to set the maximum memory to some value. For example: java -Xmx512m MyClass How do I set this flag to be the default to all the future invocations
|
| Thread Safe Java Code for Uploading To Web Sites | 22 Jun 2008 20:46 GMT | 4 |
I have a multi-threaded Java application that uploads forms through a web page to a server, to support a load and performance test. Can someone point me to public domain or commercially-supported Java code that would handle the mechanics of the HTTP upload in a thread-safe ...
|
| format() and hex characters | 22 Jun 2008 18:30 GMT | 4 |
i have an array of chars like 0x81,0x7e,0xff etc, when i try to display such characters using format() char c=0x81;
|
| Convert array of values into jTree | 22 Jun 2008 16:21 GMT | 9 |
I have the following String array: PNODE NODE PNAME NNAME DATA1 DATA2 DATA3 0 0 root root - - -
|
| Distributing Java code to servers | 22 Jun 2008 08:03 GMT | 2 |
We'd like to use a number of servers to process a large amount of data. I'd like to be able to go to one central machine and push out new Java classes/jar files to the servers, and then start up remote processes that use the new code.
|