| Thread | Last Post | Replies |
|
| AWT Scrollbar | 03 Apr 2006 16:18 GMT | 3 |
I'm developing an application on a PDA. Now I want to use scrollbars (because it's a small screen :-) ). It works fine with the option "scrollbar_always", but in one class I "paint" the panel with a kind of map and he don't want to add scrollbars here...
|
| Comparing elements from one hashset to another | 03 Apr 2006 15:51 GMT | 22 |
The following code was repeated three times to store 3 files into 3 individual hash sets. I now need to compare file A to file B, i want to see how many of the words in set A are also on set B. (Each set contains the same number of words). Im not sure how to implement this,
|
| Can't start remote debug session in JRE 5.0 | 03 Apr 2006 14:01 GMT | 2 |
set REMOTE_DEBUG=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=n,address=8081,suspend=y %JRE%\bin\java %REMOTE_DEBUG% -classpath %CLASSPATH% -Xbootclasspath:%ORBJARS%;%JRE%\lib\rt.jar package.myClass
|
| struts-config.xml | 03 Apr 2006 13:19 GMT | 1 |
I am new to developing applications in struts.I ve added the following validator plugin entry in my struts-config.xml <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE struts-config PUBLIC
|
| Related to Serialization | 03 Apr 2006 10:20 GMT | 1 |
public class myClass implements Serializable { private int intData ; private String stringData ;
|
| How to close java RMI connection? | 03 Apr 2006 01:53 GMT | 1 |
I have seen many examples how to close sockets but nothing about how to tear down RMI client/server connection properly. Is there a way to do this graceously? In the server code below, I exit by invoking System.exit(1) but it doesn't close objects.
|
| best java framework for Presentation layer | 03 Apr 2006 00:06 GMT | 1 |
can anyone tell me what the best tool is for presentation layer ?
|
| java.lang.ClassCastException | 02 Apr 2006 23:48 GMT | 10 |
inside one of my Class i've method which make this operation: ..... Call call = (Call) new Service().createCall(); call.setTargetEndpointAddress(new
|
| Swing Component look like UML | 02 Apr 2006 23:11 GMT | 1 |
I need to show visualization of my classes in my Swing Application, are there any components i could use to do this ? ( im not good with graphic so i would not like to do it myself )
|
| Memory leak and SoftReferences | 02 Apr 2006 22:35 GMT | 11 |
I am working on an application that gets large objects from a remote server and stores them in a Vector for a short period of time. When the next set of large objects come in the removeAll() method is called on the Vector object and the next set of large objects are
|
| KeyListener First Key Typed | 02 Apr 2006 20:02 GMT | 3 |
How can you tell, in a KeyListener, what the length of the document is? I'm struggling with wanting to only do something on the first key pressed on a document, and after that, to ignore the KeyPress altogether, but cannot figure out the length of the underlying document.
|
| UnsatisfiedLinkError because of an undefined symbol | 02 Apr 2006 18:53 GMT | 1 |
i am trying to capture packets using JPCap, but I always get an error: java.lang.UnsatisfiedLinkError: /usr/lib/jvm/java-1.4.2/jre/lib/i386/libjpcap.so: /usr/lib/jvm/java-1.4.2/jre/lib/i386/libjpcap.so: undefined symbol:
|
| Need help | 02 Apr 2006 18:08 GMT | 3 |
I am a new guy here and have some problem I can't handle. I just write a small class that hava a inner class. When the program running to the line that I marked with **, it will call a exception like this: at basicDomainNameLookUp.WellKnownPorts.<init>(WellKnownPorts.java:27).
|
| Java application using local MySQL DB: How to distribute easily? | 02 Apr 2006 17:02 GMT | 1 |
I have developed a Java application that makes use of a local MySQL database. Is there a way to quickly install this application on a user's computer without the burden of having to install MySQL first and import the database?
|
| Why is JAR so slow? | 02 Apr 2006 16:25 GMT | 24 |
I've given up on it and started using gzip. Its about a bazillion times faster, going from minutes to seconds for some our large code generated jars.
|