vote up 4 vote down star

Ok, this is working on windows. My Java app is running and functioning normally

javac -classpath .;ojdbc14.jar -g foo.java
java  -classpath .;ojdbc14.jar  foo

However, when I do the same thing on Unix I get this error: ojdbc14.jar: not found

What am I doing wrong? I know the ";" is telling my shell that ojdbc14.jar is a new command, but I'm not sure how to fix this.

flag

4 Answers

vote up 12 vote down check

Use a colon (":") instead of a semicolon (";").

See Setting the class path (Solaris and Linux) vs Setting the class path (Windows)

link|flag
vote up 0 vote down

Use ant, or even better use ant with a continuous build environment like Hudson and a SCM like SVN.

link|flag
vote up 2 vote down

The final solution was:

javac -classpath .:ojdbc14.jar -g foo.java
java  -classpath .:ojdbc14.jar  foo

Note: Using '.;ojdbc14.jar' removed the initial error message I was getting, but resulted in the following errro:

Exception in thread "main" java.lang.NoClassDefFoundError: foo
link|flag
How did you fix that error? – Daryl Spitzer Nov 20 at 22:33
I changed the semi-colon to colon as in the accepted answer. – CodeSlave Nov 21 at 15:37
vote up 0 vote down
javac -classpath '.;ojdbc14.jar' -g foo.java
java  -classpath '.;ojdbc14.jar'  foo
link|flag
OK, you're correct that the single quote will prevent the shell from interpreting the ";" as a command separator, but a Unix java isn't going to understand ";" in the classpath. – Ken Gentle Nov 26 '08 at 20:56
-1 for semicolon on linux – orip Nov 26 '08 at 21:11
If java will recognize the semicolon in a classpath on non-Windows platforms, it is neither guaranteed nor documented. – James Schek Nov 26 '08 at 21:29
+1. The -1 was unwarranted. InsDel's solution does work, and is not inherently unhelpful. It might not be the optimal solution, but it is a solution. – CodeSlave Nov 26 '08 at 21:52
Yeah, but I think James's point is valid - it may not always work. – Matthew Schinckel Nov 27 '08 at 3:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.