| Thread | Last Post | Replies |
|
| Does BufferedReader readLine block | 27 Nov 2006 18:18 GMT | 1 |
I am in a loop checking any input and I don't want readLine to block. Is there a non blocking function or a way to chekc if any data has come in? Angus
|
| servlets and java application server | 27 Nov 2006 17:58 GMT | 1 |
I have written a servlet with a doGet method. I've compiled it with javac. I have installed Java ee sdk 5, and started the application server. The server is up and running and I have created a couple of jsp pages
|
| How to listen out for a stream of data coming from (web)server | 27 Nov 2006 17:09 GMT | 5 |
I have an applet that connects to a server (same location as web server) and connects to a server on a socket. This all works fine for sending commands to this server. But the server can send data to the client at any moment in time. So how do I listen out for the activity? do I ...
|
| File /dev/null in Java ? | 27 Nov 2006 17:04 GMT | 11 |
is there a garbage file in Java like /dev/null in UNIX? I want temporarily throw away System.out outputs. PrintStream out_orig=System.out; System.setOut(new PrintStream(new File("trash.txt")));
|
| XML databases | 27 Nov 2006 16:57 GMT | 3 |
First of all, apologies if I'm in the wrong group, but I thought that the two are likely to go together. I have an java application that sends and receives XML documents and I need to add a storage facility and I need to be able to query that storage.
|
| Validation | 27 Nov 2006 16:42 GMT | 3 |
There are Three fields in my JSP page. I need a validation code in XML for following condition. The conditions are as follows... The First Field is compulsary, and at least one of the other fields
|
| OK to do UI in constructor? | 27 Nov 2006 16:35 GMT | 5 |
In a calculation application I want to create a new class that interacts with the user to get a problem specification. Currently the application UI is via the console, so problem specification is a series of prompts and responses. This series would occur only once per instance. ...
|
| ClassCast Exception | 27 Nov 2006 14:52 GMT | 4 |
i wonder if anyone can help or advise me on why am getting a ClassCast Exception I have a class called A (for instance) which implements another class (B)
|
| synchronization is not working right between two copies of the same class for member function | 27 Nov 2006 13:57 GMT | 5 |
I have a global class that was created to hold the references to different classes and global variables. This global class is initialized by the main class (some variable are pass in as arguments) and all the other threads do a "gd = new Global()" to get their own copy of the class ...
|
| compare biggest negative number | 27 Nov 2006 13:56 GMT | 5 |
Hello, i have to write a program in java where i have to enter three different numbers, and it will output the largest number. So for example: input: 2, 4 ,6 => output: 7
|
| What does FindClass() return? | 27 Nov 2006 13:40 GMT | 9 |
what is the return value of 'findClass' exactly? Is it a pointer to the memory which contains executable code of the class? Can I feed this pointer myself with a byte stream that contains a class file (*.class)? My
|
| Problem - cannot display rows correctly in jTable | 27 Nov 2006 13:26 GMT | 1 |
There seems to be a problem with processing and inserting large (>2000) amounts of data into jtable. I read single rows from a database, do some processing and use insertrow() to feed them to jtable. They get to be displayed (UI) as
|
| key event to minimize windows ? | 27 Nov 2006 13:11 GMT | 2 |
What is key event to minimize current windows application ? Regards Philippe
|
| Searching program in java | 27 Nov 2006 11:03 GMT | 2 |
I need a searching program using java that can search the given text in database as well as in html pages. then it should provide the url to that page containg the desired text. Thanks.
|
| Searching Program | 27 Nov 2006 11:00 GMT | 2 |
I need a searching program using java that can search the given text in database as well as in html pages. then it should provide the url to that page containg the desired text. Thanks.
|