Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
"jar -uvf" to Update a JAR with New Files
What is the "jar" command to update an existing JAR file with new or additional files?
✍: FYIcenter.com
To update an existing JAR file with new or additional files, you can use the "jar -uvf jarname files" command.
For example, the following session updates an existing JAR file with some additional classes:
\fyicenter>"%java_home%\bin\jar" -xvf jms.jar \fyicenter>"%java_home%\bin\jar" -cvf myNew.jar .\javax \fyicenter>"%java_home%\bin\javac" Hello.java \fyicenter>"%java_home%\bin\jar" -uvf myNew.jar Hello.class adding: Hello.class(in = 416) (out= 286)(deflated 31%) \fyicenter>"%java_home%\bin\jar" -tf myNew.jar META-INF/ META-INF/MANIFEST.MF javax/ javax/jms/ javax/jms/BytesMessage.class javax/jms/Connection.class javax/jms/ConnectionConsumer.class ... javax/jms/XATopicConnectionFactory.class javax/jms/XATopicSession.class Hello.class
Back to FAQ for JDK JAR (Java ARchive) Tool.
2016-09-25, ∼4457🔥, 1💬
Popular Posts:
Java Servlet 3.0 Specification API. JAR File Size and Download Location: File name: servlet-api.jar,...
What Is poi-scratchpad-3.5.jar? poi-scratchpad-3.5.jar is one of the JAR files for Apache POI 3.5, w...
JDK 11 java.sql.rowset.jmod is the JMOD file for JDK 11 SQL Rowset module. JDK 11 SQL Rowset module ...
How to download and install ojdbc6.jar for Oracle 11g R2? ojdbc6.jar for Oracle 11g R2 is a Java 6, ...
JDK 11 jdk.jshell.jmod is the JMOD file for JDK 11 JShell tool, which can be invoked by the "jshell"...