Unlike Eclipse, NetBeans does not offer a standard way to Export a Java project to a single runnable JAR file that contains all of the project's dependencies. Instead, when you Build a Java project in NetBeans it creates a dist
folder that contains
the JAR file for your own Java code, plus
a lib
subfolder containing the JAR files for the dependencies.
When you distribute your Java project to other users, Packaging and Deploying Desktop Java Applications says that you need to
Create a zip file that contains the application JAR file (YourStuff.jar
) and the accompanying lib
folder that contains [the additional jar files that your application requires].
Send the file to the people who will use the application. Instruct them to unpack the zip file, making sure that the main application jar file and the lib
folder are in the same folder. The users of your application should be able to run it by double-clicking the JAR file.
For example, when I unpack the zip file for my test application I have
[C:\__tmp]
README.TXT
UCanAccessDemo.jar
[lib]
commons-lang-2.6.jar
commons-logging-1.1.1.jar
hsqldb.jar
jackcess-2.0.6.jar
ucanaccess-2.0.9.2.jar
A quick web search revealed at least one mechanism that claims to allow NetBeans to create a single monolithic JAR file that includes dependencies ...
PackagingADistributableJavaApp
... but I have not tried it myself. (I just get Eclipse to do it.)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…