You are not logged in.
What's up with the JDK? I've tried both the one on the official repos and the jdk in the AUR, but both of them return this error when I try to execute a program named Program.java
$ java Test
Error: Could not find or load main class Test
Last edited by lspci (2013-01-17 15:57:38)
Offline
And you've got the "Help Vampire" link in you sig... give me strength...
Offline
And you've got the "Help Vampire" link in you sig... give me strength...
lol, I already solved it too.
Java was trying to run the file as if it where under the directory where java was installed. So run the program thusly,
$ java -cp . Test
Offline