| Thread | Last Post | Replies |
|
| 1.5 code base compiled with -target jsr14 | 12 Apr 2006 17:30 GMT | 3 |
I have a JDK 1.5 code base (a few hundred files) that is auto-generated and uses 1.5 language features, mostly generics as far as I know. I want to compile this and run on a 1.4.2 JVM. I have done some reading here and am proceeding by
|
| RFID API | 12 Apr 2006 17:19 GMT | 3 |
can anybody tell me what are the java api for RFID reader? Thanx.
|
| Updating a list of users on the database | 12 Apr 2006 14:52 GMT | 3 |
I'm kinda new at this Java stuff! But I gotta question about insert/updating a list of users on a database. You see I have a table: USERS -----
|
| servlet: writing to servlet stream that is closed | 12 Apr 2006 14:44 GMT | 2 |
I have the following Servlet's service code: public void service( HttpServletRequest req, HttpServletResponse res ) throws ServletException, IOException { PrintStream out = new PrintStream( res.getOutputStream() );
|
| How to do http POST with JAVA? | 12 Apr 2006 14:26 GMT | 2 |
Hello, guys. I would like to knoe how to do following example in java, instead of PHP --- start ---
|
| top down web services | 12 Apr 2006 13:46 GMT | 2 |
I already worked with RAD 6 and made some simple web projects. Now I have to create a top down Web Service. I have read several tutorials from IBM (theeducational ones from the Academic initiative), but these are too "superficial". I have also bought the book "Developing Web
|
| URL connections | 12 Apr 2006 13:11 GMT | 14 |
I'm writting a webcrawler so far it parses correctly, connects and gets the response code just fine. The problem is that everytime I try to access a .htm link it throws a FileNotFound exception. Is the .htm extension not supported by the URL class?
|
| SWT Examples view in Eclipse | 12 Apr 2006 12:32 GMT | 1 |
I have Eclipse 3.1.2 installed. I installed the SWT examples in the Examples section of the Welcome. In the Help, it says that the examples can be run from the SWT Examples view. I got to my views and click on Other, and there isn't an SWT Examples view. I downloaded and
|
| LinkedList vs ArrayList | 12 Apr 2006 11:46 GMT | 22 |
I'ev a big problem. I've a program that handles with a orded set of object. With this objects I've to a)execute a LOT of random access b) insert/remove from head and tail (not so frequently as the number of
|
| Netbeans Win->Linux | 12 Apr 2006 09:57 GMT | 2 |
I've installed Netbeans 5.0 on a Linux box here, and have copied over a number of directories from Windows using Netbeans 3.6 there. Am wondering if anyone is aware of how I can simply mount a filesystem, and recognise these java sources, from 3.6 ? Anyone have any idea on this? ...
|
| JNI java.lang.UnsatisfiedLinkError with found DLL | 12 Apr 2006 09:48 GMT | 4 |
I have made a C++ DLL, which I load like this: static { System.loadLibrary("LicenseWrapper"); }
|
| how best to put a notify/cancel status dlg up during file processing of swt app | 12 Apr 2006 09:45 GMT | 5 |
I have an swt app and I'm working in eclipse. I'm trying to figure out the best way to fit a status dialog up that will allow me to report records processed etc and make cancel /pause processing buttons available.
|
| tcp double connections bad? | 12 Apr 2006 08:26 GMT | 5 |
What is wrong with designing your applications using one TCP socket in each direction (I.e. dont make use of the bidirectionality of TCP). I.e node A and B want to communicate, have one socket for communication from A->B and another socket for communication from B->A.
|
| Java Swings: Adding JButton to JFrame | 12 Apr 2006 08:18 GMT | 2 |
I have a problem in the following code.....I was unit testing the code from main(). I have the FaMain base class for creating the window with certain features. So I need all my child windows to inherit FaMain class. Similarly, I need FaButton as base class instead of JButton.
|
| what's wrong with my program? help!!!! | 12 Apr 2006 06:01 GMT | 7 |
when you input a sentence,this program will reverse every word to output your sentence,for example,when you input"tom and jenny",this program will output"mot dna ynnej". import java.io.*;
|