aspose file tools
The moose likes Beginning Java and the fly likes java in linux Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "java in linux" Watch "java in linux" New topic
Author

java in linux

sanket karkare
Greenhorn

Joined: Jan 12, 2009
Posts: 10
when i run the command

java /home/abc/.config/autostart/Test4

i get

Exception in thread "main" java.lang.NoClassDefFoundError: /home/abc//config/autostart/Test4

I think the problem is because a dot represents current directory in java and a hidden file in linux.
So how to resolve the ambiguity.
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35443
    
    9
The "java" command takes as parameter a class name, not a file name. I think you want something like this (assuming that "Test4" is the class name, and it's not in a package).

java -classpath /home/abc/config/autostart Test4


Android appsImageJ pluginsJava web charts
sanket karkare
Greenhorn

Joined: Jan 12, 2009
Posts: 10
Thanks, your reply worked
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: java in linux
 
Similar Threads
Specific match rule
Hunt Exam Question
String object declaration problem
Strange exception with StrutsTestCase for JUnit
Array of zero size