Forum: Java Jul 24th, 2003 |
| Replies: 3 Views: 2,962 Re: Trouble with JVM There should be some kind of JVM or JDK included on the Codewarrior CD; at least there was with the older versions I have. I would suggest you find that one and install it, so that all the... |
Forum: Java Jul 16th, 2003 |
| Replies: 9 Views: 42,068 Re: Java's String Tokenizer This code will work if you use !args[i].equals("the") instead of args[i] != "the". The latter doesn't work because you end up comparing the location in memory rather than the... |
Forum: Java Jul 16th, 2003 |
| Replies: 4 Views: 3,227 Re: Linux Java IDEs Last I heard, Codewarrior is available for Linux (Redhat), but it's not free. Sun provides NetBeans packaged with their latest JDK. I've downloaded/installed the Windows version, and haven't been... |
Forum: Java Jul 16th, 2003 |
| Replies: 2 Views: 11,659 Re: Writing to an Access Database using Java... For most database systems, you can simply download a JDBC driver to connect to the Db with Java, but there aren't any free ones for Access. What I ended up having to do was create an ODBC datasource... |