| Thread | Last Post | Replies |
|
| junit testing a method that invokes an infinite loop | 26 Jan 2008 23:43 GMT | 2 |
In this scenario I am getting the next valid event in an infinite while loop which sleeps a certain period of time looking for a change in state e.g. expected file(s) in the file system that will appear at some point and will continuously appear. Question is how would you
|
| java.lang.NoClassDefFoundError in quartz | 26 Jan 2008 23:24 GMT | 12 |
i am using quartz job scheduling api for my project. when i run a simple hello world program against jdk 1.4.1_02-b06, its giving java.lang.NoClassDefFoundError: javax/transaction/UserTransaction.
|
| Preventing A New Window From Grabbing Focus | 26 Jan 2008 21:37 GMT | 16 |
I can't believe I couldn't find this in a FAQ, but I want to keep a JFrame from grabbing focus when it is created and made visible. I tried using: JFrame.setFocusable(false); before the window was made visible, but it didn't have any effect. In this
|
| Garbage collection | 26 Jan 2008 15:00 GMT | 10 |
When exactly does it run? Is it a scheduled thing or when memory hits a certain point? And what effect does manually calling System.gc() have on the process?
|
| [Hibernate] AssertionFailure null id in entry | 26 Jan 2008 12:44 GMT | 20 |
[b]Hibernate version:3.2[/b] [b]Name and version of the database you are using:Mysql 4[/b] Hi, I got a Table I want to insert data into. It's primary key is an auto increment id. Addionally, it has a unique key, that is based on two
|
| How to let the methods of a class only can be invoked by a special package(the class not in the package)? | 26 Jan 2008 05:22 GMT | 22 |
There is a class A in package XX.ZZ.GG , and A has a static method A.GetInstance(). There are 3 classes B, C, D in package XX.ZZ . How can I make the A.GetInstance() only can be invoked by the B, C and D.
|
| logging for analysis | 26 Jan 2008 04:28 GMT | 6 |
I'm still relatively new to java. I am trying to analyze and figure out on my own how a proprietary frameworks 'works'. It is event driven, and I tried putting a bunch of System.out.println
|
| javamail | 25 Jan 2008 23:32 GMT | 2 |
hello to every one..... my question : how can i get the name of incomming mail server and out going mail server , which might be filled after "String from = " your ISP mail server here "
|
| Easy Question - If you know the answer. | 25 Jan 2008 23:27 GMT | 5 |
All im trying to do is set up a small app right now. Very simple jsp page. My problem is the project refuses to use the taglib files that in jars in my build path!
|
| doubt reg MAC id | 25 Jan 2008 18:47 GMT | 2 |
hi.. do u ve any idea of tracing client's MAC id through server???
|
| what's the use of JAR files | 25 Jan 2008 18:47 GMT | 3 |
I am new to java , wats the use of jar files.wats the relation between .zip and .jar files
|
| Date addition | 25 Jan 2008 18:46 GMT | 7 |
I have a Date field named birthDate. How would I add 19 years to his guys birthday? Thanx, Bill
|
| constants in java | 25 Jan 2008 18:10 GMT | 5 |
How to atributes define like constants in some class be visible in other class? i wrote.. public class Board
|
| jlist | 25 Jan 2008 17:36 GMT | 2 |
i have a jlist; i put in a vector of string Vector v_righe = new Vector(); JList list_righe = new JList(v_righe); i select an element of the jlist with the mouse
|
| Open Jframe in Windows NT Service | 25 Jan 2008 15:37 GMT | 3 |
Hi there to everyone! I have a simple program, client and server, to send messages to the server and when the server receives it opens a window with the message contents.
|