Quote:
Originally Posted by tororebelde
My first tricks with java over iliad. This is what I'm doing:
Compile a dummy class that show a silly message (on com/irex/sdk):
Code:
javac -source 1.2 -target 1.2 MyOwnTest.java
Create a java package with this new stuff:
Code:
jar cvfm javi.jar Manifest -C com/ .
|
You should attach your jar-file, but unless I read it wrong (I don't use jar command line anymore) it should just be
Code:
jar cvfm javi.jar Manifest com
Otherwise the class file will be included with wrong fileprefix (the "com" folder prefix isn't included). You can verify this by opening the jar file in WinZip, 7-zip or similar.