Making a JAR

H

hynespm

Hi,

I am making a JAR file for a program in Swing. The Swing application
uses 5 external Jar files. Im having problems creating the manifest
file correctly and when i get my jar made, it cant find the main
class. Below is the mamifest file it contains the main-class variable
and the class path variable(I use this to point to the external jars,
if this is the incorrect way of doing it please let me know).

Manifest-Version: 1.0
Main-Class: start.Start
Class-Path:
C:\Sun\jwsdp-2.0\jaxb\lib\jaxb-xjc.jar;
C:\Sun\jwsdp-2.0\jaxb\lib\jaxb1-impl.jar;
C:\Sun\jwsdp-2.0\jaxb\lib\jaxb-api.jar;
C:\Sun\jwsdp-2.0\jaxb\lib\jaxb-impl.jar;
C:\Sun\jwsdp-2.0\sjsxp\lib\jsr173_api.jar;

Cheers
Patrick
 
A

Andrew Thompson

hynespm wrote:
...
I am making a JAR file for a program in Swing. The Swing application
uses 5 external Jar files. Im having problems creating the manifest
file correctly and when i get my jar made, it cant find the main
class.

Does the jar contain a class with path & name of
start/Start.class ?
...Below is the mamifest file it contains the main-class variable
and the class path variable(I use this to point to the external jars,
if this is the incorrect way of doing it please let me know).

I think it is. The paths should be relative,
not absolute..
Manifest-Version: 1.0
Main-Class: start.Start
Class-Path:
C:\Sun\jwsdp-2.0\jaxb\lib\jaxb-xjc.jar;

..so if the main jar lives in.. 'jaxb', that path would be..
lib/jaxb-xjc.jar
..note the forward slash, and lack of ';'. The example
in the JavaDocs shows two jars listed on the same
line, delimited by a space.

HTH
 
C

cyprian

hynespm wrote:

..


Does the jar contain a class with path & name of
start/Start.class ?


I think it is. The paths should be relative,
not absolute..


.so if the main jar lives in.. 'jaxb', that path would be..
lib/jaxb-xjc.jar
.note the forward slash, and lack of ';'. The example
in the JavaDocs shows two jars listed on the same
line, delimited by a space.

HTH

you can save yourself much trouble by using NETBEANS to build your jar
files. then open the jar file and see what's inside, that way you'll
learn how to create one yourself seamlessly
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,073
Latest member
DarinCeden

Latest Threads

Top