computer$ jar tf MyJar.jar
META-INF/
META-INF/MANIFEST.MF
Main.class
A.class
maintest.java
$ java -jar MyJar.jar
Failed to load Main-Class manifest attribute from
MyJar.jar
Manifest-Version: 1.0
Created-By: 1.5.0_06 (Apple Computer, Inc.)
I can't see
Main-Calss: Main
now i have Main.jar and Talk.jar
main is in .main.jar
and another one is in /libary/Talk.jar
how to edit MANIFEST to link to another Class directory ?
this is in MANIFEST of main.jar
Manifest-Version: 1.0
Main-Class: Main
Class-Path: /libary/Talk.jar
it right ?
i can't link to Talk.jar