| Thread | Last Post | Replies |
|
| getting hostname from NT machine via Citrix | 24 Feb 2005 21:12 GMT | 12 |
I don't know if any one can help or has any ideas about this. We are writing a web based application which will run on a Unix box. It will be accessible only via a login to Citrix from client machines. We have achieved a transparent login to the application (running in Tomcat) using ...
|
| java runs but no program visible | 24 Feb 2005 20:13 GMT | 2 |
I am attempting to run a program called MAGpie2 that requires a Java installation; the bat file triggers a splash window but then nothing else happens ... a check of Task Manager reveals a large javaw.exe is running, but nothing is visible.
|
| IllegalMonitorStateException :S | 24 Feb 2005 19:52 GMT | 1 |
Im trying to implement some read/write locks in Java. (Thanks Tilman Bohn for your earlier reply) Ive got some working using a single MutEx Monitor, however my implementatios is Write preferrencial.
|
| Compiler: Line 39 { expected | 24 Feb 2005 17:17 GMT | 2 |
When I compile the following code, I get 4 errors, the first of which is really bugging me. I've checked my braces, and there doesn't seem to be anything wrong with them, all methods appear to be braced. Other than that, I've had some issues with "cannot make a static reference to
|
| compareTo() problems | 24 Feb 2005 16:18 GMT | 2 |
I'm trying to sort an array of strings using Selection Sort. Im using CompareTo to compare the string elements in the array to each other, but the loop where I use this method is being skipped over. Does anyone know an alternate way to do this so that the program actually
|
| NullPointerException error... | 24 Feb 2005 14:01 GMT | 7 |
try { String url = <url>; Statement stmt; // no problem here... ResultSet rs; // get error says this var should be initialized..
|
| values of JCheckBox | 24 Feb 2005 13:55 GMT | 1 |
I know that JCheckBox sends event, which include state of it. What I need to do, if i want to check the state of JCheckBox by button? There is any method checking the current state of JCheckBox ? Duzy
|
| Adding integers to a Vector?? | 24 Feb 2005 06:40 GMT | 6 |
If I want to add 1,2,3,4 to a vector I can only make it work like this: Vector v = new Vector(); v.add(1+""); v.add(2+"");
|
| (Spring/Tapestry)-POJO's-hibernate-oracle-JBOSS | 24 Feb 2005 06:36 GMT | 1 |
hello help I have worked out 1 project using MVC jsp - servlet - POJO's - own data manager - oracle - web logic now i have to start a new project with
|
| Help: Java APIs to read EPS. | 24 Feb 2005 00:23 GMT | 1 |
I need to read EPS (encapsulated postscript) files from my Java application. Is there any Java APIs that allow me to do that? Thanks for help. Daniel.
|
| send SMTP mail using JavaMail with gmail account | 23 Feb 2005 19:21 GMT | 5 |
I want the Java application to send email using google gmail account. The following is the output, and it cannot display "sendMail() 3..." in the following sendMail() method. The program just hangs after printing "sendMail() 2...", and there is no errors.
|
| greedy method | 23 Feb 2005 19:09 GMT | 14 |
I want to know whether there is any greedy approach for job sequencing with variable job completion times.. if there is no greedy approach how to prove it...
|
| help!!!! | 23 Feb 2005 17:01 GMT | 4 |
i am in a programming class and am new to the whole thing i am supposed to write a program that was assigned by the teacher and i am confused 1) Declare a variable called "marbles" that will store the number of marbles in a can.
|
| concurrency with monitors | 23 Feb 2005 15:48 GMT | 1 |
Hi, I hope you can help me out with this one.. I have a data structure in Java which is accessed from multiple threads. Some threads may be trying to read the data, and some may be trying to write data.
|
| task sheduling | 23 Feb 2005 15:21 GMT | 3 |
i need to shedule some task at the determined time. in api reference there is Timer class ( and TimerTask ), but "This class does not offer real-time guarantees: it schedules tasks using the Object.wait(long) method." in my midlet, it is critical to shedule tasks at the certain time ...
|