Can I do this:
javac -classpath ././My_Jars/*;././My_Other_Jars/* -d bin Test.java
Above command always throws ClassNotfound! (My_Jars not found and My_Other_jars not found)
Java: JDK 6 OS: Windows 7
|
Can I do this:
Above command always throws ClassNotfound! (My_Jars not found and My_Other_jars not found) Java: JDK 6 OS: Windows 7 |
||||
|
You should use |
|||
|
|
|
I suspect that the problem is not the relative path, but the use of wildcards (the asterixs). These are actually expanded by the command line environment (the shell) - and in this case would not probably give what you are expecting. |
|||||
|
javac -classpath ../../My_Jars/*;../../My_Other_Jars/* -d bin Test.java– Bala R Oct 9 '11 at 14:09././doesn't makes any sense in a path, as.refers to "this directory", so there's never a reason to repeat it. – Ryan Stewart Oct 9 '11 at 15:12