| Thread | Last Post | Replies |
|
| Data Structure recommendation | 28 Mar 2008 02:24 GMT | 1 |
I am looking for your recommendations on data structures to consider for use in a program for efficiency, etc. . . . I have tens of thousands of small text files that are the output of some analysis algorithms. (Their number may grow significantly in the future.)
|
| Implementing a network protocol | 27 Mar 2008 22:03 GMT | 7 |
I'm implementing a program which uses a specific protocol to communicate with other clients, but I was wondering how to implement the protocol itself (in a well structured way). I already have a class which handles the serialization and sending and receiving of messages.
|
| Issue with DirectByteBuffers | 27 Mar 2008 21:58 GMT | 1 |
I am working on a system where we continually jump between native code and java code. I have a place where I use NewDirectByteBuffer in the native code to create a data buffer I can use to pass data back and forth from java.
|
| Do you recognise this schema? | 27 Mar 2008 21:40 GMT | 8 |
Here is a schema generated from the DTD for JNLP 6. It looks similar to XSD, but not quite. What is it? <?xml version="1.0" encoding="UTF-8" ?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
| SAX parsing problem, when element contains text like "[text]" | 27 Mar 2008 21:36 GMT | 1 |
I try to parse some XML results of PubMed (the largest biomedical article database). The document contains elements like this: <articletitle>[Virus and RNA silencing]</articletitle>
|
| Whatever happened to PvdL? | 27 Mar 2008 21:24 GMT | 2 |
My curiosity about Hotjava now sated, what of Peter van der Liden? I recall that he used to be pretty active on Usenet and quite a prolific author and Java advocate. As I recall he used to author the Java FAQ (which now 404's). I liked his
|
| Need help with JDBC code walk | 27 Mar 2008 20:07 GMT | 3 |
I am in a soup again :) I have a java class called SessionManager. As its name implies, it keeps track of session.getAttribute and session.setAttribute calls from a webserver (actually JSF + JBOSS which is another nightmare :).
|
| Webapp does not support foreign characters | 27 Mar 2008 05:32 GMT | 2 |
I need your help. My web application does not support foreign language characters right now. If I type in some chinease charanters in TITLE and save, it comes back with garbage. While my database is UTF-8, the rest of the
|
| Translate DOM to SAX and vice versa | 27 Mar 2008 05:02 GMT | 1 |
I want to convert a DOM node x and its descendants into a SAX stream and vice versa. has someone tried any of these two cases any help is appreciated. -Aevi
|
| [Thread[pool-1-thread-2,5,main] - What does this mean? | 27 Mar 2008 02:42 GMT | 4 |
I would like to check concurrency issues in java web application; like all developers I did a System.out.println on the current thread: [Thread[pool-1-thread-8,5,main] Can anyone help me understand what the values in the system.out are?
|
| Hot on the trail of JNLP failure | 27 Mar 2008 01:35 GMT | 6 |
On my machine, any desktop icon to launch Java Webs Start app fails with a message about Java not being installed. I discovered manually created shortcuts to the JNLP file would work. I discovered today that modifying the shortcut to use C:\Program
|
| Singletons and Serialization Question | 26 Mar 2008 23:53 GMT | 8 |
I am operating within Tomcat 6. I use 'collector' singletons to build complex trees of objects from database queries. These singletons rely on a pool of connections to various data sources, which are made available via a 'connection pooling' singleton like this:
|
| java web start .jar file location | 26 Mar 2008 23:49 GMT | 6 |
When a .jar file is downloaded via Java WebStart, where is it downloaded? I use Windows XP. thanks,
|
| java versus C or C++ for number crunching | 26 Mar 2008 23:44 GMT | 21 |
This is the sort of question that I hope won't start an unhappy discussion, but I wanted to know whether there are any well accepted tests comparing java to C++ (or C) for doing extensive number crunching (e.g. multiplying 100,000 vectors in three space by various
|
| Question about java.util.regex.Pattern | 26 Mar 2008 20:55 GMT | 4 |
I am trying to use a Pattern to match certain strings in error messages in our application. We are delimiting them using the following notation, {0}, {1}, etc. I am trying to use String's replaceFirst (even replaceAll) method to replace the instances of
|