| Thread | Last Post | Replies |
|
| Calendar Again | 30 Apr 2006 17:27 GMT | 2 |
I have a problem in programming JAVA... Input : Month : Year :
|
| Need help in comparing the string words in two arrays. | 30 Apr 2006 10:45 GMT | 5 |
I have a text paragraph and a String[] of StopWords. Now I will have to compare the each word of the paragraph with the StopWords array and then if the word in paragraph doesn't match it returns false and that word be pushed into a vector. So to compare each word of the text
|
| question about streams | 30 Apr 2006 08:51 GMT | 6 |
I have a little problem with the following code (s2c is a socket): is = s2c.getInputStream(); br = new BufferedReader(new InputStreamReader(is)); oi = new ObjectInputStream(is); //here my program hangs. How can I
|
| Does Netbeans use swing? | 30 Apr 2006 03:05 GMT | 1 |
Does netbeans use swing? It looks very fast..I can't believe it is all swing... Thanks, Dimitri
|
| Compiler incompatibility? | 30 Apr 2006 00:12 GMT | 3 |
I am trying to compile a Java class, Foo, that has a dependency on another Java class, Bar. I'm getting this message from the compile, which is taking place in an Ant script: [javac] Compiling 1 source file to
|
| type combinations | 29 Apr 2006 23:17 GMT | 3 |
I have a class whose instances are both an A and a B: interface A {} interface B {} class C implements A, B {}
|
| Problem with a JAVA program launched in a PHP program | 29 Apr 2006 22:53 GMT | 1 |
I wrote a JAVA program which uses the JAVA API JDOM 1.0 (of this site www.jdom.org) I put the archive jdom.jar in the directory /usr/share/java/jdom.jar and I added this path in the CLASSPATH variable.
|
| Eclipse: Checkstyle error indicators not updating when I save the file | 29 Apr 2006 21:44 GMT | 1 |
What do I need to do to get error indicators to update when I save? I enable checkstyle for a project, open a source file, the checkstyle errors are shown, I fix an error and save, but the error indicator does not go away. The error indicators will be updated if I disable checkstyle ...
|
| Why a big company does not sponsor Bruce Eckel. | 29 Apr 2006 20:55 GMT | 2 |
Since Bruce Eckel has become a kind of beginners guru,I mean many thousands of Java programmers have learned Java with him(for free). Now he decided not to give his job for free anymore,Its fair nobody
|
| A fixed size window in Java | 29 Apr 2006 18:16 GMT | 6 |
Hello. I am writing a Java application with Swing and I need a Window with a fixed size, because every time I call "pack" because some components of that window change, the Window is resized to fit exactly that components.
|
| call a method at intervals | 29 Apr 2006 17:48 GMT | 2 |
I made an applet in one class. Now I would like to call two of the methods in a certain timeinterval. Something like javascript's setInterval("method()", milliseconds); The one method has to run every minute and the other on every fifth
|
| Programming Cryptography in J2SE 1.3.1 | 29 Apr 2006 15:47 GMT | 2 |
The classes such as KeyGenerator and Cipher do not exist in J2SE 1.3.1. How to encrypt the data and decrypt it in this version of J2SE? Does anyone have ideas? Thank you
|
| binary password in SQL?? | 29 Apr 2006 14:37 GMT | 3 |
I used this function to convert the password to a hashe value public static byte[] getKeyedDigest(byte[] buffer, byte[] key) throws NoSuchAlgorithmException { MessageDigest md5 = MessageDigest.getInstance("MD5");
|
| Give me some advice about some books of Java programing! | 29 Apr 2006 12:13 GMT | 14 |
I am a beginner of java programing ! In general, I use tool Ecilpse to program; I hope that some experienced java programer give me some advice about how to master java programing and which to select books of java !
|
| Socket connection between Java and C possible? | 29 Apr 2006 11:49 GMT | 2 |
Just wondering if anyone knows if it is possible to create a socket connection between a C program and a Java program. Thanks. Ben.
|