I\'m trying to load a jar using
@echo off java -jar Test.jar pause
With the manifest of
Manifest-Version: 1.0 Main-Class:
1.Create a text file calles Manifest.txt and provide the value as
Main-Class: classes.TestClass
2.Create the jar as
jar cfm test.jar Manifest.txt classes/*.class
3.Run the jar as
java -jar test.jar