Forum: Java Apr 23rd, 2008 |
| Replies: 1 Views: 1,619 Hi,
I get the following exception when i try to run the following code segment.
stmt = (Statement) conn.createStatement();
rs = stmt.executeQuery( "SHOW TABLES");
if(rs.first())... |
Forum: Java May 27th, 2005 |
| Replies: 4 Views: 3,733 |
Forum: Java May 27th, 2005 |
| Replies: 4 Views: 3,733 |
Forum: Java May 27th, 2005 |
| Replies: 4 Views: 3,733 I formatted my computer today, now I can't compile the files from command prompt, but I can run the compiled ones. How can I solve this problem :o :o :o
Thanks |
Forum: Java May 26th, 2005 |
| Replies: 11 Views: 2,657 Deitel - Java How to Program |
Forum: Java May 23rd, 2005 |
| Replies: 63 Views: 132,903 From the documentation
public class NoClassDefFoundError
extends LinkageError
Thrown if the Java Virtual Machine or a ClassLoader instance tries to load in the definition of a class (as part... |
Forum: Java May 23rd, 2005 |
| Replies: 3 Views: 1,272 I also think that a book would be better |
Forum: Java May 20th, 2005 |
| Replies: 3 Views: 1,776 Try out this code, maybe you can use some parts of it
class Convert {
public static void main(String args[]) {
Scanner keyboard = new Scanner( System.in);
String Num,... |
Forum: Java May 20th, 2005 |
| Replies: 2 Views: 1,719 Maybe you should use ArrayList class rather than using arrays.
You do not need to specify a maximum element number. Also ArrayList class does the shifting things itself when you remove an element... |
Forum: Java May 19th, 2005 |
| Replies: 8 Views: 17,912 You can use " java.io" package classes to do that. |
Forum: Java May 19th, 2005 |
| Replies: 16 Views: 13,503 Maybe you can work on some kind of simulation things such as traffic simulation with intelligent drivers, pedestrians... or air control simulation. Also a modeling kind of thing might be interesting... |
Forum: Java May 19th, 2005 |
| Replies: 3 Views: 2,681 You can define one of tthose frames as an inner class under another one with private access (Actually you can't make an inner class public). THen you can use D1 in both of them. And you can use the... |
Forum: Java May 17th, 2005 |
| Replies: 15 Views: 5,674 Hi,
I have problems with showing the menu items. I wrote a kind of calculator program. When I open the file menu the first open item can be seen on the text field but the other ones I think goes... |