| Thread | Last Post | Replies |
|
| java multidimensional string array | 05 May 2006 22:14 GMT | 12 |
I have this elementary short piece of code that works import java.io.*; public class filearray { public static void main(String args [])throws IOException {
|
| Travelling Salesman with Spherical Coordinates. | 05 May 2006 22:06 GMT | 12 |
Just shoot me! I spent all day (5 hours) working on a top coder problem and now it is failing the test cases after I thought I finally had it. I was wondering if anyone could tell me what is going wrong.
|
| memory stats | 05 May 2006 21:30 GMT | 1 |
JRockit (JVM) from weblogic has a great feature that helps in tracking memory leaks. You can enable printing of memory stats like (most added objects since last GC, top objects occupying memory, etc). These stats get printed at the time of garbage collection. They can also be ...
|
| difference between strings? | 05 May 2006 20:52 GMT | 2 |
I'm trying to pass an IP address in the form of a string into a method. If I pass in a string that I read in that contains: 128.120.101.12 I get null.
|
| Serialize a class (not an object) | 05 May 2006 17:32 GMT | 5 |
I want to send a class (compiled java file, not an object) over RMI so that the receiving party can instantiate objects with that class file. Using an RMI codebase is sub-optimal since the type of class is dynamically generated and will thus change very often. Is there a way
|
| RMI newbie | 05 May 2006 17:29 GMT | 1 |
I am tring to learn rmi and having some problems Why when I call getStockPrice on the client side does it print the starting value (1.34) and no the current value that prints out on the server side from the System.out.println statements?
|
| HOW to remove noise from recorded file | 05 May 2006 17:03 GMT | 3 |
I am using java.sound.sampled api to record and plyback soound but the recording quality is not good. A continuous hiss sound is there. plz help me finding out that
|
| object arithmetic | 05 May 2006 16:34 GMT | 4 |
I am developing a java application that has some classes that contain arrays of numerical data that have multiple dimensions. I would like to be able to add objects together or subtract one from another using simple statements such as:
|
| Sorting a row of letters, using a blank space, with some added rules | 05 May 2006 15:21 GMT | 6 |
I will have a line consisting of the letters A-E in a random order and a blank space at the end. So that gives me positions 1-6. Now I want them sorted to give me the order "ABCDE ", and the sorting would be to put a letter into the empty space, and sort them that way. That would
|
| Difference B/w JRE or JDK | 05 May 2006 13:42 GMT | 2 |
Hello to all, I am using Redhat 9.0 and I have JRE-1.5.0.bin and I installed it on my system, and at my start menu + programs option+ java web services program.
|
| xml when storing in string if grows beyond 22 mb gives java.nio.BufferOverflowException? | 05 May 2006 12:48 GMT | 2 |
Is there any alternative to solve this problem.I am getting the error java.nio.BufferOverflowException .This happens in my mail server when the file six\ze of xml where i have stored data about spam/nonspam grows upto 22mb.I have stored this xml in database as blob.at server
|
| compiling multiple packages from the command line? | 05 May 2006 11:44 GMT | 5 |
I usually do my java development inside an IDE. But I need to compile my code from the Windows command line. I have two packages: ProjectName\src\com\CodeSupplier\CodeFolder, and ProjectName\src\MyProject
|
| Does Java support shutdown code when program is killed? | 05 May 2006 07:23 GMT | 4 |
I want my program to print something when I terminate it by hitting control-C. Is this possible? How do you do this in Java? Thanks!
|
| problem with showDocument | 05 May 2006 04:34 GMT | 5 |
I can't make method showDocument to work. This works: applet.getAppletContext().showDocument(new URL("http://www.google.com"), "_self");
|
| NoClassDefFoundError | 05 May 2006 04:28 GMT | 7 |
I was wondering what the reason is behind this. I recently installed the Java 5.0 SDK. Compiling *.java files seems to work fine, but whenever I try to run something, it gives me that NoClassDefFoundError. I've seen a solution is to run it as java -classpath . ClassName, but
|