| Thread | Last Post | Replies |
|
| Check if URL exists | 28 May 2005 12:24 GMT | 6 |
I can't seem to find the right method to check if a URL exists (it's not a HTTP 404). InputStream input = url.OpenStream(); input = new BufferedInputStream(input);
|
| Reassigning an array of a class. | 28 May 2005 11:39 GMT | 4 |
In my Genetic Algorithm program, I have a class called Genome. Another class called GA has a class variable called 'population' which is an array of type Genome. One of the methods in GA, called CreateNextGeneration(), creates a local
|
| Java class persistance | 28 May 2005 11:30 GMT | 11 |
I'm developing an application using Java and I would like the user to be able to plug in various methods of persistance. The has led me to JDBC using standard SQL-92, but this is really overkill for what I'm trying to do. I only have a handful of classes that I would like to
|
| How to re-use existing classes in JSP/JavaBeans/Servlets | 28 May 2005 00:18 GMT | 25 |
OK, this is somewhat of a neophyte question but I don't know where else to ask it. What is the best way to integrate existing Java classes into a web page? These are purely domain logic classes... no presentation or
|
| a JDBC question | 28 May 2005 00:05 GMT | 6 |
If you make a call to the database. If you cannot find any person with a matching last name, do you a. Return null b. Throw a RuntimeException
|
| Pulling out data between <TD> tags using regular expressions | 28 May 2005 00:01 GMT | 3 |
If I had this tag and wanted to return 123 how would I do it? I have tried countless methods but can not get the only the 123 without the <TD> tags <TD class=tblform3 id=L_listing width=23>123</TD>
|
| signals | 27 May 2005 20:25 GMT | 2 |
Is it possible for an external program to send a signal (such as SIGINT, SIGUSR1, SIGUSR2) to a java application, and have this java application handle it?
|
| -Xrunjdwp with multiple transports? | 27 May 2005 19:01 GMT | 1 |
Is it possible to start a JVM with -Xdebug -Xrunjdwp option so it accepts both shared memory and socket connections? Or is it one at a time?
|
| Invalid pc in line number table when using ftp'd class | 27 May 2005 19:00 GMT | 1 |
When FTP'ing compiled class to another box I get the following error: Exception in thread "main" java.lang.ClassFormatError: <classpath> (Invalid pc in line number table) at java.lang.ClassLoader.defineClass0(Native Method)
|
| Servlet question | 27 May 2005 17:53 GMT | 2 |
Is it possible to have a servlet listen to a specified port?. Any examples of how to do this (or links to examples) would be great. I have not had much success having this question answered, or finding examples when searching via Google.
|
| Stop tab compoent switching... | 27 May 2005 17:28 GMT | 1 |
How can I stop the tab key from switching components on a screen?
|
| jar access problem | 27 May 2005 16:11 GMT | 2 |
My application is something like this: I have two files: c:\test\a\b\JarTest.class c:\test\c\d\JarMan.class
|
| Creating a unique random id | 27 May 2005 16:08 GMT | 17 |
how likely is it that the following code produces duplicate ie identical random numbers, when it gets executed on different virtual machines running on different computers? import java.util.Random;
|
| Struts and Collections | 27 May 2005 15:58 GMT | 2 |
I am new to struts and I have a small problem. I have a bean (DataGrid) that has a collection of Columns (ArrayList) and each column has rows (ArrayList). So, when i want to iterate with the lists i would do something like:
|
| Soul wrenching JNLP blues | 27 May 2005 14:00 GMT | 2 |
I seem to have a problem that whenever I add arguments to my jnlp file to be passed as parameters to the main method of the target application, they all come out as null! I'm passing three parameters, but the target application seems to
|