| Thread | Last Post | Replies |
|
| Help with executing a jar file | 15 Dec 2006 22:44 GMT | 4 |
I'm having trouble executing a jar file I created using Eclipse. I have two projects set up in Eclipse... one with all the main source code (no Main classes) and another with a main class that utilizes code from the other project. I created a jar of the first project and added
|
| Can I simplify this code? | 15 Dec 2006 21:59 GMT | 6 |
Can I simplify this code? for (Iterator iter = this.children.iterator(); iter.hasNext(); ) { String obj = (String)iter.next();
|
| MVC + RMI | 15 Dec 2006 21:37 GMT | 3 |
I am writing simple client-server network game using RMI. Client side has three classes: - view: simple GUI - model: engine, which invokes methods on server
|
| Exported UTF-8 data in CSV file not working as expected | 15 Dec 2006 21:14 GMT | 1 |
Appreciate if anyone can help. Exported UTF-8 data in CSV file not working as expected. i am exporting the utf-8(chineese charater) data from my jsp code into the CSV file ,it is not saving the data in the expected behaviour.the
|
| what does the the "import" statement do for the program on earth? | 15 Dec 2006 20:23 GMT | 3 |
I am a beginner of Java. I don't understand what the the "import" statement do for the program clearly. For example, I just write a program like this:
|
| Fair Interview Question? | 15 Dec 2006 19:51 GMT | 13 |
After interviewing for a number of positions I found that I've a problem answering questions along the lines of: "Design me a scalable trading/pricing system." The typical aim being to "see how your mind works". Now I don't have a
|
| Naming an uploaded file without filepath | 15 Dec 2006 19:22 GMT | 1 |
I am using the Jakarta Commons FileUpload library to upload a file from an Intranet site to a directory on the UNIX box. This is working correctly. Except, when the file is transferred to the UNIX box, it is named with
|
| How to "trim" a big class? | 15 Dec 2006 19:18 GMT | 3 |
I have a big class from somebody: public class BigClass { public void A()
|
| sendkey method in java | 15 Dec 2006 19:13 GMT | 1 |
we are trying to write a java program, in which will enter a key to keyboard when it gets a specific string from user. In short, we are trying to find a way in java which will be equvalent to SendKey Method in Visual Basic. Does anybody can help in this process?
|
| mysterious overriding behavior | 15 Dec 2006 19:01 GMT | 17 |
I always thought the method called depended on the type of the object, so when I define superclass X and its subclass Y: class X{ void speak(){
|
| Writing to property file | 15 Dec 2006 17:19 GMT | 2 |
I notice that when we try to write a value back to the property file, the original comment in the property file will be removed. Any idea how to keep the comment in the property file and yet updating the key with the new value?
|
| what JVM should I compile for when creating J2ME applications? | 15 Dec 2006 15:45 GMT | 2 |
I'm busy building my build file, when I realised i dont even know what JVM version to compile to. what version should i set the "target" to? 1.4?
|
| String and escape characters | 15 Dec 2006 15:18 GMT | 2 |
I have a very long string in which i need to remove new lines (\\r\\n) etc.Managed to remove new lines but in my output i still get '', which kind of escape character is this?Is it EOF? how to remove it?Thanks
|
| deadlock?? | 15 Dec 2006 14:38 GMT | 2 |
The following is not my code, but I have to maintain it. The two classes have been simplified to get to the point, try-catch blocks, among other things, are omitted. MyStuff has a main thread run(). And clients call
|
| Japanese Text not displayed on Image Generated by Servlet on winXP, Linux but displayed on Win2000 | 15 Dec 2006 14:24 GMT | 1 |
I have developed a web App sample (project Proposal Purpose) that creates various Charts (bar, pie, time series...) using JFreeChart API. I need to have Japanese text in all the labels of the Chart. I gave hard coded Japanese text to the method that creates the chart
|