| Thread | Last Post | Replies |
|
| [JUNIT] Cleaning up resources | 06 Oct 2006 13:24 GMT | 1 |
When I'm writing single test, it may fail() at any moment of the test. Since I create some resources in the database in the begining of the test, I'd like to remove them whenever the test finished (not matter whether with success or not). Thus I'm looking for an approach like
|
| Functionality or interaction? | 06 Oct 2006 11:54 GMT | 5 |
Is there any way to distinguish between methods that are responsible for the communication between components(i.e. classes) and methods that are responsible for providing the real computation?
|
| Are local enums possible? | 06 Oct 2006 11:51 GMT | 13 |
You can define a class inside a block of java code as in: class Example { public void someMethod() { class LocalClass {
|
| How to make my FileSaver being able to output any type stuff? | 06 Oct 2006 11:00 GMT | 7 |
I am writing a Class file (FileSaver.java), which has the outline: public class FileSaver { private JFileChooser _fileChooser = null; public FileSaver()
|
| Reading a directory | 06 Oct 2006 10:58 GMT | 2 |
I have a folder with lots of file. Is there any way that I read each file of this folder using Java? Thanks
|
| Has anyone here ditched ant in favor of scripting for builds? | 06 Oct 2006 10:52 GMT | 19 |
I just want to know you're experience. Do you use both ant and scripting? Pure script builds? Do you use Groovy or Ruby?
|
| Generics & Comparable | 06 Oct 2006 10:14 GMT | 3 |
I'm confused. This may not even make sense but in trying to figure it out I think I've fried my brain beyond rational thought. Can you generisize a class C such that the compareTo will only work for any 2 generic types T1 & T2 given a common comparable ancestor of T1 & T2?
|
| GUI for Eclipse | 06 Oct 2006 09:11 GMT | 2 |
I've started programing in Java using Eclipse. So from now on, I'm gonna need to develop GUI aplications. At your experience which GUI builder is the best? I was googling and downloaded
|
| regarding file operation | 06 Oct 2006 06:39 GMT | 3 |
I have written code for writing into text file...It is appended in the same line...i want to append line by line(incase of student details)..so that i have used "\n" in between strings..but it is not working..
|
| Extract Filename | 06 Oct 2006 01:25 GMT | 5 |
Can anyone tell me what is the best way to seperate a filename and a path so I'm left with 2 strings. e.g. Turn this input: "C:\path\to\my\file.txt" into:
|
| ibm jsse ssl and client authentication | 06 Oct 2006 01:14 GMT | 7 |
I have a simple servlet that I want to use to make a post via ssl to a server. The server requires client authentication. The way I understand the documentation that I have read is that the ca trust store is defaulted to the java/lib/secuity.. cacerts file but that you
|
| stateful Java web services | 06 Oct 2006 00:46 GMT | 1 |
I am trying to use the stateful web service. but i am not able to do this please let me give some help, that how i can achive this. Thnx. Sanjay Kumar Gupta
|
| Re: HOST - Assembla Inc. Breakout - Copyright Violation by Mr. Andy Singleton | 05 Oct 2006 23:59 GMT | 3 |
[For some reason, the newsgroup server seems to not have distributed the messages yet. Thus posting via groups-google now. first message was from 2006-09-27, second message from 2006-09-28, both with a CC to Andy Singleton]
|
| binary insertion | 05 Oct 2006 22:32 GMT | 13 |
i can't seem to get my binary insert to work properly. any help would be appreciated. this function should return the location where newBook should be inserted.. for example, if i have an array {AA,AB,AC,AE} and i want to
|
| can you call .readObject from readResolve? | 05 Oct 2006 20:28 GMT | 2 |
I have a static integer value in a class that I am trying to serialize. We have our own writeObject what writes the integer out each time the object is written. This works.
|