| Thread | Last Post | Replies |
|
| Object reference counting | 05 Jan 2007 08:34 GMT | 13 |
I think the answer is no, but is there any way for me to know how many Objects reference a given Object? The given object contains a reference to a disk file, and I'd like to delete the file when there are no more threads that reference the
|
| How do you copy multidimension array from Vector to Object[][] ? | 05 Jan 2007 08:20 GMT | 4 |
I have absolutely no idea how to do this. I inserted a [] array into a vector, which then ofcourse became a [][] array, but now can't get it out back to a Object[][]. Vector vector = new Vector();
|
| Sandboxed file access in web-start - test results requested | 05 Jan 2007 08:19 GMT | 1 |
Web-start offers file access even to *sandboxed* applications, assumimg the user approves each file. There is a checkbox when opening 'always allow' that seems to have no effect (on Win XP, Java 1.5).
|
| Identify unused methods?? | 05 Jan 2007 06:41 GMT | 17 |
We would like to use a tool to spot methods in oour packages that are not being used. We have the entire source set under Eclipse, so a plugin would be best. We do not want anything too complex or a graph, or statistics, just a simple report that indicates what methods are not
|
| path for loading images when using packages | 05 Jan 2007 04:53 GMT | 7 |
Tonight I started to structure all my classes using packages and after getting all the 'package' and 'import' statements working properly I ran into issues with the code that loads images (nullpointer exceptions). They were all working prior to the package changeover.
|
| How to understand two classes mutual "has a" relationship? | 05 Jan 2007 04:26 GMT | 2 |
I saw a UML diagram showing two classes A and B. A "has a" B in it. B "has a" A in it. I feel hard to understand. Could you help me or give me some code to show that concept? Thank you very much.
|
| What classpath should I set so javac can find all those classes came with SDK? | 05 Jan 2007 02:22 GMT | 9 |
I have just installed Java SDK 5.0 at C:\Program Files\Java\jdk1.5.0_10. Using Control Panel -> Systems -> Adavanced Tab -> Environment Variables, I have set PATH to C:\Program Files\Java\jdk1.5.0_10\bin;
|
| Connect to db2/400 through jsp | 05 Jan 2007 02:01 GMT | 9 |
I am new to jsp. Could someone please help me out. I have successfully connected to db2/400 through java in WDSC. I am connecting db2/400 through jsp in WDSC. I am using com.ibm.as400.access.AS400JDBCDriver.
|
| How to make java client app to download jar package from server autoly? | 05 Jan 2007 01:47 GMT | 32 |
I want to write a command line java client program. And the program need to use the jar package, but the package was located in the server. I want the client program to download the jar package automarically at the program startup.
|
| List of unique elements? | 05 Jan 2007 00:32 GMT | 9 |
Unless I'm mistaken, there is no SDK implementation for a List of unique elements. All List implementations accept duplicates; Set implementations do not. However, having a List of unique elements is a useful object.
|
| Problem with searching in TreeSet expressions starting with a given text | 04 Jan 2007 23:51 GMT | 3 |
I store in TreeSet expressions in some natural language. This can be any natural language. The content of a set is sorted in this language by language collator: collator = Collator.getInstance(locale);
|
| servlet and forms and long strings | 04 Jan 2007 21:11 GMT | 12 |
I have a form that the user enters information into. This information is then passed to a servlet for processing. The problem is the form doesnt seem to pass strings of more than one word . eg. if I put in "java" , this will be passed to the servlet , but if i put in "java
|
| How to process string value after 'el' processing | 04 Jan 2007 20:30 GMT | 5 |
I have a jsp jstl question. It is actually kind of simple, but I still couldnt get an answer. And it is more of a design question. How do you do 'processing' or manipulation of a string value 'after' it has been processed through 'el' jstl?
|
| FileOutputStream append issue | 04 Jan 2007 20:14 GMT | 7 |
I am trying to append a few files using FileOutputStream (Java 1.4) and it does not seem to be working correctly. My code is similar to as follows: File file1 = new File("some file path");
|
| Java library for reading C-Map NT Max charts | 04 Jan 2007 19:19 GMT | 1 |
Hi, I am new to this group, so I hope I'm in the right place! I am developing some basic marine navigation software in Java and was wondering if anyone knew of any existing Java libraries that read C-Map charts, particularly C-Map NT Max PC charts?
|