| Thread | Last Post | Replies |
|
| Netbeans package org.openide.awt does not exist | 27 Jul 2005 16:48 GMT | 3 |
I started a new project in NetBeans and ran into an infuriating problem. When adding a component that uses the setText() method, NetBeans puts in automatically generated code producing org.openide.awt.Mnemonics.setLocalizedText(jLabel1, "jLabel1"); (This
|
| Having a JFormattedTextField allow only int 1 to 9 | 27 Jul 2005 16:30 GMT | 3 |
Im new to Java but not programming, I am totally frustrated with getting a text field in Java to only accept the input of one integer between the values of 1 to 9. I have tried so many different
|
| Information on Struts Menu | 27 Jul 2005 16:16 GMT | 3 |
Im just about to start looking at Struts Menu for my company, but I am struggling to find any decent documentation on the subject. Does anyone know of a good source of information on Struts Menu - Ideally I need a simple 'how to tutorial'.
|
| Busting "java.lang.outofmemory" | 27 Jul 2005 15:31 GMT | 17 |
I am working on a project in which when i run out of memory, I get a "Java.lang.outofmemory" exception. But I am not able to catch this ! i.e is every function has a try catch statement. But I am not able to get hold of this exception.
|
| plugin base application | 27 Jul 2005 14:24 GMT | 5 |
can someone write me, how write plugin base application like eclipse Thanks
|
| nedit jsp syntax-highlighting | 27 Jul 2005 13:46 GMT | 1 |
i'm looking for a pats file for nedit with jsp syntax-highlighting or jsp-html syntax-highlighting ... Thanks.
|
| Best Compiler | 27 Jul 2005 13:14 GMT | 19 |
I'm just about to start a course in data structures and algorithms using Java as the language. I haven't touched Java for a couple of years. Can anyone advise of a good compiler to use. Most recently I've been using Microsoft C++ .Net in ANSI mode, and I have liked using this ...
|
| Transfering callback function to jni | 27 Jul 2005 11:18 GMT | 5 |
Lets say you have a jni function which accepts a callback function. This function should be set from within java and called if a failure happens in the jni code. The only examples I've seen of java callbacks are where the java function is
|
| Partial messages returned over socket | 27 Jul 2005 10:15 GMT | 6 |
I have written a Java applicaion that connects via a socket to a third-party server. The server comms are byte-oriented and I've been having problems with partial messages being returned by from it. I have therefore used DataInputStream and DataOutputStream with no buffering
|
| Proxies | 27 Jul 2005 09:58 GMT | 8 |
If i were to set the http proxy for a particular url i did this Properties systemProperties = System.getProperties(); systemProperties.setProperty("http.proxyHost", proxy); systemProperties.setProperty("http.proxyPort", port);
|
| Corrupt String or bytearray transport over RMI | 27 Jul 2005 09:40 GMT | 2 |
I have a strange problem when transporting a String and it's byteArray between 2 JVM's on the same machine. The JVMs are seperately started instances of IBM's 1.3.1 JVM which also comes with Websphere 4.5. On JVM1, I have something along the lines of:
|
| Edit a file | 27 Jul 2005 09:29 GMT | 2 |
I am wondering what the best way to edit a file in Java is. I have a file that has Header information and then footer information. in between is the data encircled by Strings like "START DATA" and "END DATA". I need a file that will contain only the info between these 2
|
| Need source code w/ lots of generics | 27 Jul 2005 09:13 GMT | 1 |
I am working on updating the Java syntax highlighting rules in NEdit (http://www.nedit.org) to handle generics, and I need some code to really torture it. Any pointers to one or two source files that really push generics to
|
| using jdbc to connect to db2 | 27 Jul 2005 06:52 GMT | 1 |
I am pretty new to JDBC and I am trying to write a simple application to connect to a db2 database residing on a different machine. I am looking for a code snippet and the neceesary steps in order to establish the connection to the database and to send some simple
|
| What is an interface? | 27 Jul 2005 00:30 GMT | 26 |
Someone please help me out, I've looked at 50+ books on Interfaces. I understand contracts etc. But how on earth does an Interface method do something like start a thread running? eg: class TryThreads implements Runnable
|