The difference

Posted On December 13, 2007

Filed under Uncategorized
Tags: ,

Comments Dropped leave a response

javac -target 1.4 SD*.java

vs.

javac -target jsr14 SD*.java

Just as a note:

  • jar cvfm test.jar manifest.mf ./
  • in a directory containing *.class only + manifest.mf
  • manifest.mf can be a single line file containing
    Main-Class: Main

    corresponding to Main.class which contains the main method.

  • java -jar test.jar

Respond now.