| Thread | Last Post | Replies |
|
| How can I convert PDF, TIF, or JPG to GIF in java? | 19 May 2007 04:15 GMT | 2 |
I'm looking for a light-weight, free way for converting (and hopefully resizing) image files that are in PDF, TIF, or JPG format into GIF format. This has to be compatible with J2ME (not sure exactly which version, but it is analogous to Java 1.3).
|
| Size of appletviewer | 19 May 2007 03:57 GMT | 2 |
I want to launch an applet using appletviewer. Everything is fine, except that I don't know how to set the size.Is there any command line option to do that? I don't want to set a default size for all the applets, but juust for one applet specifically.
|
| Ant Build.xml - Cant get wsdl2java target to compile directory of files | 19 May 2007 02:32 GMT | 1 |
I'm fairly new to using the ant build environment, so I'm sure I'm asking a silly question but here goes anyway. I have a directory of wsdl files called /tmp/wsdl I'm trying to use the axis wsdl2java target to compile each of the
|
| External modules | 18 May 2007 22:04 GMT | 1 |
I amnot there in my program, but it will come soon. My game runtime has to support extensions objects. In the C++ runtime under Windows, these extension objects are DLL that we load at the beginning of the game. How can I do that in Java? Is there some kind of extension system ...
|
| small java exercise | 18 May 2007 20:25 GMT | 35 |
I am working on this exercise and would be thankful if you folks comment on it. The requirement was as follows: Create a MovieRating class that contains a private map with rating as
|
| Easiest way to initialize a string builder to a random number of the same character | 18 May 2007 20:10 GMT | 1 |
Is there something simpler than this? StringBuilder sb = new StringBuilder(); int s; for (int i=0; i<s; i++){ sb.append(' '); }
|
| Adding popup menu to JMenuItem | 18 May 2007 17:39 GMT | 5 |
How do I add a popup menu to JMenuItem? Has anyone a link or experience with something of the sort? I tried adding a mouse listener to the JMenuItem, but the JMenuItem kept performing its action even when I have reacted to the right click and consumed the mouse event.
|
| Write to a file once a second | 18 May 2007 17:37 GMT | 4 |
I'm trying to write a single line to a file (say, myfile.txt) every second using either javax.swing.Timer or java.util.Timer, but I'm struggling with this. Instead of posting my code, I was hoping someone might have a simple example that writes to a file using a Java timer.
|
| ID of thread that waken up by notify() | 18 May 2007 15:48 GMT | 9 |
The notify method will wake up one thread waiting to reacquire the monitor for the object. How could I know which thread is waken up by this notify method called by another thread? I looked at java.lang.management.* and JVMTI, but I could not find a
|
| disabling maximise button in frame | 18 May 2007 14:25 GMT | 2 |
how do i disable the maximise button in my swing frame. i tried asking toolkit and i think toolkit is saying not supported for such field constants. who knows how?
|
| looping every few minutes | 18 May 2007 12:49 GMT | 3 |
I have written a code that goes through an infinite loop in the main function and calls an other function and goes to sleep. In this function I am awaiting for an input from the user, my program doesn't wait for the users input when the sleep timer expires calling that
|
| Which is the best free UML tool ? | 18 May 2007 09:42 GMT | 15 |
Which is the best free UML tool ? Is this UML tool free ? Is this UML tool UML2 compliant ? May I genere Java code from UML with this UML tool ?
|
| Exception in thread "main" java.lang.NoSuchMethodError | 18 May 2007 05:33 GMT | 10 |
I'm working a program assignment for school. I thought my code was good but it won't run. It compiles successfully but gives me this error during runtime: Exception in thread "main" java.lang.NoSuchMethodError
|
| Session variables weird behavior | 18 May 2007 04:11 GMT | 3 |
I have a double array that I store in the session variable: finalList[] [] String[][] finalList = new String[8][25]; ... do some work to pull information into double array ...
|
| login username from database | 18 May 2007 01:42 GMT | 2 |
I have a login window with a username and password fields. The program checks the username and password from a mysql DB table. If I enter a username that is not in the database, how do I get it to display a message that the username does not exist.
|