user1097772
user1097772

Reputation: 3549

Using MigLayout imported from .jar

I'm usually working in Eclipse. In my program, I'm using this miglayout-4.0-swing.jar file from this source: link.
Somehere in the .jar file is class with MigLayout.
I use these imports:

import net.miginfocom.layout.Grid; 
import net.miginfocom.swing.MigLayout;

//It's from the jar file.

In Eclipse i just add library:
Java Build Path -> Libraries -> Add JARs/Add external JARs -> path to miglayout-4.0-swing.jar
So in Everything working.
But I need to run it from terminal: java (I don't use packages so i use just classes from bin) but there is the problem with the .jar file, cause myMain class probably don't know where are the classes for that .jar (doesn't work the imports upper). I tryed copy the .jar file to same directory where are the classes. Doesn't help. What should I do to add the .jar file correctly?

Upvotes: 1

Views: 10758

Answers (2)

Burkhard
Burkhard

Reputation: 14738

Pretty old question, but for the sake of completeness:

You need both . (current directory) and miglayout-4.0.jar to be on your classpath. You have two ways to do so. The easiest is to use -cp

In your case, you'll need to run:

java -cp "path_to_miglayout_jar/miglayout-4.0-swing.jar:." myMain

or if you work on a Windows OS:

java -cp "path_to_miglayout_jar/miglayout-4.0-swing.jar;." myMain

If unsure if you need to use a ; (colon) or a : (or whatever the OS is asking for), you can take a look at java.io.File.pathSeparator which contains the correct separator.

The other way would be to change your CLASSPATH variable.

Upvotes: 0

Sorceror
Sorceror

Reputation: 4843

Command line java command don't know where to look for the miglayout jar file. You should run in from command line like

java -cp path_to_miglayout_jar myMain

Upvotes: 3

Related Questions