Environment: Windows 7, Java 6.
Trying to compile a .java file with -cp option. The file uses a single jar file that\'s in the current directory ALONG WITH some othe
use backslash in windows?
try
javac -cp .\* MyFile.java
also note Broken wildcard expansion for Java7 commandline on Windows(7?)