| Thread | Last Post | Replies |
|
| Need a large amount of memory! | 30 Apr 2005 18:37 GMT | 1 |
I need a large amount of memory for variables - about 128MB. But Java don't want to give me that much memory. Is there an option which controls the memory usage? thx in advance
|
| Create InetAddress from a String. | 30 Apr 2005 18:14 GMT | 4 |
I need to create a socket connection to a site. String name = "elektra.usm.com" socket sock = new socket( name, port ); This wont work because the name isn't an ip address. I need to create
|
| Finding a minimal cost tree for the network | 30 Apr 2005 16:18 GMT | 1 |
All, Any one from this group can help me to solve this problem please!!! Thanks Bob.
|
| Static initilizer failed to execute? | 30 Apr 2005 14:20 GMT | 4 |
We had what I consider to be an extremely odd occurrence this morning. A class that has not been changed for over 2 years appears to have failed to run its static initializer code. Because the code in question accesses another system, I track execution
|
| How to get the runtime class? | 30 Apr 2005 13:26 GMT | 6 |
I have 2 classes abstract public class foo { public void bar() { // i want a Class object of "this"
|
| How to determine line break in textarea? | 30 Apr 2005 11:24 GMT | 16 |
I'm writing an application which has a text area in one of the classes. I'm saving the information from the text area to a flat file - cvs formatted. (Don't ask why, it just is so.) Anyway, I need to capture the line breaks so that I can put a \n in my flat file for reloading the ...
|
| How do you create an InetAddress from a String. | 30 Apr 2005 08:14 GMT | 1 |
I need to create a socket connection to a site. String name = "elektra.usm.com" socket sock = new socket( name, port ); This wont work because the name isn't an ip address. I need to create
|
| Generics and ClassLoaders | 30 Apr 2005 07:59 GMT | 4 |
Assuming: String myClass = "some.package.SomeClass"; ClassLoader aClassLoader = someClassLoader; This statement provokes a type-safety warning when using c.newInstance():
|
| Using Reflection to get all Classes? | 30 Apr 2005 03:11 GMT | 3 |
I'm currently writing a Java-Application that is supposed to offer a sort of Class Browser (similar to the Smalltalk Class Browser). I understood the necessarity of Reflections. It's easy to get a Class with a known name (like: Class c = Class.forName(knownName);)
|
| parse int from string | 29 Apr 2005 23:24 GMT | 4 |
How do I go about parsing integers from following form? (a:3, b:4) (b:4, c:2) (c:2, d9) ... and so on If I can I like to process two ints at a time for example 3 and 4 then move on to 4 and 2 and so on...
|
| serialVersionUID and Eclipse | 29 Apr 2005 21:50 GMT | 1 |
Is there a way to have Eclipse ignore serialVersionUID warnings? --Steve
|
| Calling a Web Service using Axis, from within an Axis Web Service running under Tomcat | 29 Apr 2005 21:27 GMT | 1 |
I am running into class loading errors when I attempt to invoke a 3rd party web service using the axis classes org.apache.axis.client.Call org.apache.axis.client.Service
|
| OutOfMemoryError - how to find root cause | 29 Apr 2005 20:50 GMT | 13 |
Very recently, a web application ( JSP / Iplanet6 / Solaris 2.8) has begun to freeze up. Web server logs indicate: Internal error: Unexpected error condition thrown java.lang.OutOfMemoryError,no description), stack: java.lang.OutOfMemoryError
|
| Java Threads | 29 Apr 2005 20:11 GMT | 2 |
Hi - I have a slight issue with threads. I'm also new to Java so bear with me if I've done anything stupid! There are two main classes: Main and FxThread. FxThread extends Thread and implements Runnable and Main creates three
|
| ExceptionInInitializerError in Castor | 29 Apr 2005 20:00 GMT | 3 |
I am using castor -0.96 to marshall and unmarshall the xml file. Following is the scenario where I am having problem. I use castor to generate the xml file and convert into a byte array and make a call to a remote service using axis. Now the webservice tries to
|