First, compile your program.
C:\my_java_files> javac *.java
Then, you'll need to create a manifest file.
C:\my_java_files> copy con manifest.mf
Manifest-Version: 1.0
Created-By: 1.3.1 (Sun Microsystems Inc.)
Main-Class: MyProgram
^Z
The blank line at the end it required.
The last step is to make the JAR:
C:\my_java_files> jar cvfm MyProgram.jar manifest.mf *.class