Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running Java Program from Command Line Linux

Tags:

I am not very experience with java and this is driving me crazy. I wrote a java program FileManagement and I need to run it from the command line.

I can compile it from the command line with javac FileManagement/*.java which will create all the classes in that folder but when I try java FileManagement.Main it says :

Exception in thread "main" java.lang.NoClassDefFoundError: FileManagement/Main

The thing is that I have tried this same procedure in a remote computer and it is working fine. It is not working on mine.

like image 272
Altober Avatar asked Sep 11 '10 18:09

Altober


1 Answers

If your Main class is in a package called FileManagement, then try:

java -cp . FileManagement.Main 

in the parent folder of the FileManagement folder.

If your Main class is not in a package (the default package) then cd to the FileManagement folder and try:

java -cp . Main 

More info about the CLASSPATH and how the JRE find classes:

  • How Classes are Found
  • Setting the class path (Solaris/Linux)
  • http://en.wikipedia.org/wiki/Classpath_(Java)
like image 170
Bart Kiers Avatar answered Oct 09 '22 07:10

Bart Kiers