Hi, this is probably simple... I want to execute a .class file a different directory from what the .class file exists. I've tried things like this:
java -classpath /usr/bin/local/tmp/ /usr/bin/local/tmp/someclass
but I only get the errors like this:
Exception in thread "main" java.lang.NoClassDefFoundError: /usr/local/tmp/someclass
What should I write for this to work?
/ ernstad