Archive for February, 2010

Compile Java with External Jar Files at Command Line

If you want to compile Java files at the command line, you use the javac command.

javac ../Java/*.java

This will create a .class file for every .java file that could be compiled.
But let’s say you are referencing one of many external Java libraries that are packaged as .jar files. You probably don’t want to just stick the [...] Read more »