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:
Extract Entries "jar -x" Command Syntax
What are syntax rules of the "jar -x" command for extracting entries from a JAR file? I am confused on how to specify different options, like v and f.
✍: FYIcenter.com
The "jar -x" command allows you to extract entries from an existing JAR file to the current folder. It has the follow syntax:
jar -x[vf] [jar-file] [pattern]
"v" option flag returns verbose information on standard output for each entry extracted. If "v" is not specified, nothing shows up on the standard output.
"f" option flag specifies the JAR file. If "f" is specified, "jar-file" must be provided. If "f" is not specified, the JAR file is read from the standard input.
If "pattern" specified, only those entries that match the pattern will be extracted If not specified, all entries in the JAR will be extracted.
Here are some example of valid "jar -x" commands
jar -xf activation.jar
Extract all entries in the JAR
jar -xf activation.jar com/sun/activation/viewers/Image
Extract all entries that matches the given pattern
jar -xvf activation.jar
Extract all entries with information on the standard output
type activation.jar | jar -xv
Read the JAR file from the standard input
Back to FAQ for JDK JAR (Java ARchive) Tool.
2016-05-22, ∼3496🔥, 0💬
Popular Posts:
How to download and install ojdbc14.jar for Oracle 10g R2? ojdbc14.jar for Oracle 10g R2 is a Java 1...
Java Cryptography Extension 1.6 JAR File Size and Download Location: File name: jce.jar, jce-1.6.jar...
JDK 11 java.sql.rowset.jmod is the JMOD file for JDK 11 SQL Rowset module. JDK 11 SQL Rowset module ...
JDK 17 jdk.internal.vm.ci.jmod is the JMOD file for JDK 17 Internal VM CI module. JDK 17 Internal VM...
What JAR files are required to run dom\Counter.java provided in the Apache Xerces package? You can f...