| Thread | Last Post | Replies |
|
| Whats wrong with this code.... | 11 Apr 2005 04:22 GMT | 10 |
public List loadNotes(Long id) { List notes = new ArrayList() ; try
|
| ray/triangle intersection in java | 11 Apr 2005 02:09 GMT | 1 |
I wrote this function that should return 1 if a ray intersects a triangle and 0 if not, but it doesn't seem to work quite right. I did some ray-tracing with it, and a triangle does show up, but it's not quite right. The points on it seem to have been moved or something.
|
| Using POI to read bookmarks from a msword document | 10 Apr 2005 23:48 GMT | 2 |
Does anyone have any experience woking with POI and MS WORD. I need to read bookmarks from a document then right to it. I went throw the docs, and I dont see any reference to bookmarks, only tables, ranges and paragraphs
|
| Eclipse Plugin Development | 10 Apr 2005 22:57 GMT | 2 |
Hi, I want to develop an eclipse plugin. The plugin should generate code for the design pattern specified by the annotation feature type of Java 1.5 i.e @singleton should generate the template code for singleton pattern. I have already developed it without using eclipse,
|
| N-ary tree code? | 10 Apr 2005 21:32 GMT | 1 |
Does anyone have any sample code for an N-ary tree? If not, what modifications should I make to a Binary Search Tree in order to make it an N-ary tree?
|
| Plugin java pattern | 10 Apr 2005 17:54 GMT | 2 |
I want implement a plug-in architeture in my java program. Exists a plugin java pattern? Thanks, Carlo
|
| Continuously reading a result XML with dom4j | 10 Apr 2005 10:38 GMT | 2 |
I'm trying to read an XML file which is generated by a server side script element by element. It looks like this: <addpictures_queue> <queue_element>
|
| java.util.zip.ZipFile doesn't take InputStream as constructor | 10 Apr 2005 09:35 GMT | 1 |
I'm trying to arbitrarily pull files out of a multi-100-meg zip file. The zip file has been encrypted so I can't simply give ZipFile()'s constructor the filename. I need to pass the zip file through a cipher object which can give me an inputstream but ZipFile doesn't have a
|
| any size limit on file loaded by applet? | 10 Apr 2005 03:29 GMT | 3 |
My applet is expected to read a file up to 50megabytes. It works well when file is less than 10mb while cannot work when file size beyond that. Anybody came across problems like that? I am wondering if there is any size limit of file size that applet can load. Is it caused by
|
| Another NPE Server Error. | 10 Apr 2005 02:44 GMT | 2 |
Yes, after I posted to this group quite recently about a Null Pointer Exception server error, I am afraid that I have now another one on my hands ["java.lang.NullPointerException"]Here is the servlet code which triggered this this time. Can someone please help me again with ...
|
| En/Decryption | 10 Apr 2005 01:18 GMT | 3 |
I've deployed an application via java web start that I want to protect via password encryption. The client enters a username and password. The username is sent to a web server which searches a data base for the user's password. The server then encrypts a string, known to the
|
| concurrency | 09 Apr 2005 21:20 GMT | 9 |
I've heard that the concurrency features in 1.5 are more efficient than using synchronized(). Has anyone done any benchmarks on this? I've got a class that is accessed from two threads, I was using synchronized(my_private_lock_object) to prevent out-of-synch access to
|
| Managing sounds | 09 Apr 2005 19:15 GMT | 1 |
I'm working on a Java-based game (eventually to be Open Source), and have started looking into how to manage sounds. I want to be able to play background music, and mix in various sounds related to what's going on in the game (e.g. short speeches, "event" sounds like someone ...
|
| Java Source code to UML | 09 Apr 2005 18:15 GMT | 5 |
I am trying to find a plugin to generate UML from source code. Regards, Am Khan
|
| changing code while program is running | 09 Apr 2005 14:37 GMT | 2 |
I would like to have my class code loaded into application, which is already running. I tried something like this: public class Main {
|