| Thread | Last Post | Replies |
|
| Don't you need an XML Virtual Machine ? | 31 Mar 2006 17:48 GMT | 20 |
RefleX is a Java tool that allows people that have no particular knowledge of Java to write smart programs entirely in XML. The concepts of native XML programming used in RefleX have been designed separately, so that other implementations on other platforms/languages can be
|
| deploying multiple instances of same application (.war file) on tomcat 5.5 | 31 Mar 2006 16:35 GMT | 2 |
We have a web application running on tomcat 5.5 that works fine when deployed independently. However, we would like to deploy multiple instances of the same application on the same server. We have built a new war file of the same application with a different name including a
|
| Gui implementation in extensible framework | 31 Mar 2006 16:19 GMT | 5 |
OK, here's the rub: there will be document objects, various kinds, with the potential for more kinds to be introduced in the future by other coders. (So, there should be an interface or abstract base class.) These will need gui editability and viewability.
|
| Problems with using JFormattedTextField | 31 Mar 2006 15:26 GMT | 1 |
I try to use a JFormattedTextField to show and enter numbers but can't really figure out how to make it work. The following code is the simplest example I have come up with. If you start this program you get a window where you can enter a number
|
| reusable coding and programming? | 31 Mar 2006 13:03 GMT | 3 |
Hello!~ To make a program or some classes / functions better reuseable (or other people can easily build their code on them), what are the major points to pay attention to? Any "fast cooking list and recipe" for it?
|
| Sockets: Fine Regularly, Bad With SSL | 31 Mar 2006 12:24 GMT | 8 |
The code for this is long and I can post the entire thing or post parts as needed. I have a hunch the issue is probably not so much one of code, but some "obvious" point I've missed that newbies working with SSL don't get. I have a port forwarding program. It has a server port and ...
|
| JNI: instace object C++ from Java | 31 Mar 2006 12:17 GMT | 15 |
I'm a newby about JNI. I have an application write in C++ and I have to migrate it to Java. I have seen that JNI permit to call c++ methods that return only primitive type as string or int.
|
| Beginner J2ME thread question. | 31 Mar 2006 11:30 GMT | 4 |
I'm just starting out with Java, on the J2ME platform. I've been reading about threads, such as this page: http://developers.sun.com/techtopics/mobility/midp/articles/threading2/ where it says:
|
| TreeView in JSP | 31 Mar 2006 10:18 GMT | 2 |
I have to show the folder structure as a tree view in a JSP page and return the selected file's details to be updated in a database. Which one should i go for?? 1. Using Swing components viz. JTree
|
| who can tell me why | 31 Mar 2006 08:23 GMT | 58 |
class Test{ public static void main(String args[]){ String a = new String( "2" ), b; b = a;
|
| Parsing "February 24th, 2006" to java.util.Date | 31 Mar 2006 06:45 GMT | 12 |
how does one write a SimpleDateFormat pattern to take into account the "th" or the "nd" that might be present on any date? March 1st, 2006 March 2nd, 2006
|
| what happens to buffer ? | 31 Mar 2006 05:27 GMT | 26 |
byte[] buffer = new byte[512]; int read; while ((read=in.read(buffer)) >0) { out.write(buffer, 0, read);
|
| msgbox | 31 Mar 2006 05:19 GMT | 1 |
What is the java equivalent of a visual basic msgbox?
|
| Help with getClass().getResourceAsStream() in static context | 31 Mar 2006 04:53 GMT | 5 |
I've got a Swing app where I need to load an image out of the jar file when the GUI is created. As a result I have no 'this' to call getClass() on. How do I get a class that I can call getResourceAsStream() on in a static context?
|
| tooltip on listbox item | 31 Mar 2006 04:32 GMT | 2 |
Does anyone know how to, or an example showing, putting a tooltip to a lisbox wherein each listbox item has a seperate tooltip? Thanks Ike
|