| Thread | Last Post | Replies |
|
| drawing a graph | 18 May 2005 12:51 GMT | 8 |
Dear friends, I have been trying to draw a graph of vertices and edges connecting these vertices in Java and to show them. Does anyone have a blueprint of such a program.?
|
| Jstl <c:if> | 18 May 2005 12:48 GMT | 4 |
I'm trying to use the jstl tags in my struts application. web.xml __ <taglib>
|
| request code generator? | 18 May 2005 10:18 GMT | 2 |
Do you know where to find some peace of software/code which I can implemented in my desktop java application which will protect it from illegal using? I imagine something like: buyer can install my software by using request
|
| JNI_OnUnload not called | 18 May 2005 07:50 GMT | 1 |
I have some JNI code which uses JNI_OnLoad to cache a pointer to the JVM, found classes and method ids. I have used the JNI code with IBM's and Sun's 1.4.2 JDK's on windows and linux. I wrote a JNI_OnUnload function to delete the global refs to these classes etc... I noticed
|
| Serial Port Programming | 18 May 2005 06:10 GMT | 3 |
I am writing a program that interfaces with a serial port device (router). This application must work for both Linux and Windows machines. As such, I would like to use Java. I would like to know what free libraries are available to do serial
|
| Logging network connections | 18 May 2005 04:48 GMT | 15 |
I'm struggling with a problem. In a new feature for an application I'm maintaining, user-defined code is uploaded to a web application, and run in a security manager. The code is permitted to make network connections to most addresses (excluding those inside the corporate
|
| using "this" keyword and loading data from caches | 18 May 2005 03:10 GMT | 10 |
I am working on optimizing loading of objects. Here is my problem I use a base class DataAccessObject. public class DataAccessObject {
|
| Using constants in regular expressions | 17 May 2005 23:08 GMT | 6 |
the following code snippet: String replacementPattern = "-$1 $2-"; Pattern patter = Pattern.compile("http://(.*?)/(.*)"); pattern.matcher("http://www.example.com/test/index.html").replaceFirst(replacementPattern);
|
| generic LinkedList and warnings - newbie question | 17 May 2005 22:25 GMT | 2 |
I'm using Eclipse (Linux) and JDK 1.5 with generics. Eclipse points a warning in my generic code. This is my code: // generic LinkedList - this is OK
|
| Javac issues "might be uninitialized" for null test | 17 May 2005 21:23 GMT | 2 |
I find it a bit undesirable that javac would give a "might not have been initiliazed" warning for this case: Object o; if (o != null) ...
|
| Struts to portlets? | 17 May 2005 19:43 GMT | 3 |
Can somebody point me at a article/tutorial that explains the differences between designing a Struts based web app and a portlet based equivalent?
|
| Struts conditional validation ? | 17 May 2005 17:46 GMT | 5 |
I'm using struts to validate my fields through "validation.xml" file directives, using dependends="required". I now have a field which value is required depending on another field value.
|
| class file location | 17 May 2005 15:46 GMT | 3 |
Is there some provision in java programming language to find out the location of the executing classfile (I mean the path of the file in the directory structure) at runtime? I really dont have any clue if this is possible programmatically?
|
| XMLSignature | 17 May 2005 12:30 GMT | 1 |
I want to sign a xml file using MD5withRSA. I saw a sample in this forum : public static void main(String unused[]) throws Exception { String keystoreType = "JKS";
|
| simple RMI chat problem | 17 May 2005 12:29 GMT | 1 |
I want to implement a simple RMI chat with a (Swing-)GUI on the client side. I manage to send a chat-message to the server and from there to all clients. But here the strange things start: the output that should appear in the
|