Preskočiť na hlavný obsah

How to use Java Jar Tool?

If you need to package your classes in a jar file use jar command line utility. Creted Jar file can be used in class path.

creates new JAR:
jar cf target.jar inputfiles: It is used to

to view all the files of the JAR:
jar tf somefile.jar

to run a JAR if the manifest file is present in the JAR. The manifest file must contain the information of the class file having main method:
java -jar app.jar

to extract the JAR:
jar xf somefile.jar

Obľúbené príspevky z tohto blogu

mysql 5.0 upgrade to 5.1

The 5.1 series of MySQLwas unmasked for the gentoo portage. When upgrading from an older major version (including 5.0), you will be required to rebuild everything linked to the libmysqlclient.so.15 and libmysqlclient_r.so.15. You can do this by installing app-portage/gentoolkit and running: # revdep-rebuild --library libmysqlclient.so.15 # revdep-rebuild --library libmysqlclient_r.so.15 If you use the Portage 2.2 series, you may also use: # emerge @preserved-rebuild The official upgrade documentation is available here: http://dev.mysql.com/doc/refman/5.1/en/upgrading.html Note that existing databases may need converting as well, again including those upgrading from 5.0 to 5.1.