| Thread | Last Post | Replies |
|
| Different behavior Win/Mac/Linux | 29 Oct 2005 10:41 GMT | 6 |
I developed a program with a main window and some child window. When I call a child window I use to disable the main window with the statement: "this.setEnabled(false);" because ai like to start a new window in a modal way (I need that the user can't work with the main
|
| JWindow KeyListener | 29 Oct 2005 05:25 GMT | 4 |
I have a JWindow inside a JFrame and I'm trying to read key input. I've tried adding key listeners to both the JWindow and the JFrame, but neither responds to my input. Any suggestions?
|
| Putting return() in catch block | 29 Oct 2005 02:20 GMT | 8 |
I am writing some try/catch to run various processes in main(). I want the whole program to fail if any step fails, so I thought about putting a "return" inside of the catch to halt the program. But, then I thought -- would the finally() execute if I ended execution
|
| Content-Disposition - Trying to open a pdf file from a servlet - getting error 'file not found' | 28 Oct 2005 22:21 GMT | 3 |
I am developing an application using WSAD. I have to open a pdf file from a servlet. My code goes this way: public void doPost(HttpServletRequest req, HttpServletResponse
|
| Assign key to JFrame | 28 Oct 2005 20:32 GMT | 1 |
Is anybody knows how to assign F1 key for JFrame, when pressed open a help file.open the help file is ok. But assigning F1 key is the problem.
|
| Solve this beauty | 28 Oct 2005 20:26 GMT | 19 |
Code: 1. String line = "123 456"; 2. String firstPart = null; 3. String[] splits = line.split("\\s",2); //breaks line into two parts at
|
| Problem with <jsp:include on Tomcat 5 | 28 Oct 2005 18:24 GMT | 2 |
Hi all, I hope someone can help me understand why this doesn't work. I guess I don't understand how <jsp:include is supposed to work... :-) here is include.jsp: <html>
|
| Viewing Javadoc information in tooltip in Eclipse | 28 Oct 2005 17:45 GMT | 1 |
I have eclipse and before formatting my comp when i programmed in eclipse and hovered with mouse on classes defined in eclipse or in JDK I got large tooltip show the class description as defined in JDK javadoc.
|
| java.util.logging for Java 1.3.1 | 28 Oct 2005 16:15 GMT | 2 |
Being stuck in Java 1.3 becuase of application vendors, I would love to have a backwards port of java.util.logging libraries to 1.3. Has anybody out there have such a port? Thanks,
|
| Getting a date of the remote machine from a Java desktop application | 28 Oct 2005 16:08 GMT | 7 |
I am writing a Java desktop application which accesses the database from a remote server. We are using an MS Access database residing on the remote server. In some of the tables when a new record is inserted, we need to insert
|
| browser resident "notice board" Applet? | 28 Oct 2005 15:30 GMT | 7 |
Does anyone know of a piece of software (most likely a Java Applet) that can sit in a users web browser, and be sent messages from a server, and display (and allow the user to delete) those messages?
|
| VERY Slow SSL Connection from Win to Linux | 28 Oct 2005 14:02 GMT | 6 |
I have a client application connecting to a server using SSL. The connection is very very slow. When I add the server ip to the windows hosts file it connects quickly but I don't want to rely on users doing this ....
|
| Authentication Problem | 28 Oct 2005 12:26 GMT | 3 |
The requirement is ; A user logs onto the windows domain with their username/password and then opens IE to access an internal web app written in java and hosted on a weblogic app server. Before that access is given they need to be
|
| Jini and global reference | 28 Oct 2005 11:50 GMT | 1 |
I tried to use a Jni global reference in C code but it works well on the same Thread with multiple calls of the native function, but it doesn't works across different Threads. How can i share a global variable between Threads?
|
| Passing large C buffers to Java (via JNI) without copying? | 28 Oct 2005 10:33 GMT | 10 |
I'm trying to determine whether this is even possible... I have a _very_ large buffer malloc'd on my C heap that I would like to hand over to Java, preferably as a Byte[]. So far, every example of this that I have come across involves _copying_ the data from my C buffer
|