当前位置:  技术问答>java相关

如何用JDK的jar.exe命令列出jar档的内容?

    来源: 互联网  发布时间:2015-03-31

    本文导语:  | jar-The Java Archive Tool Combines multiple files into a single JAR archive file. SYNOPSIS jar [ options ] [manifest] destination input-file [input-files] DESCRIPTION The jar tool combines multiple files into a single JAR archive file. jar is a ...


|
jar-The Java Archive Tool
Combines multiple files into a single JAR archive file.
SYNOPSIS
jar [ options ] [manifest] destination input-file [input-files]
DESCRIPTION
The jar tool combines multiple files into a single JAR archive file. jar is a general-purpose archiving and compression tool, based on ZIP and the ZLIB compression format. However, jar was designed mainly to facilitate the packaging of java applets or applications into a single archive. When the components of an applet or application (.class files, images and sounds) are combined into a single archive, they may be downloaded by a java agent (like a browser) in a single HTTP transaction, rather than requiring a new connection for each piece. This dramatically improves download times. jar also compresses files and so further improves download time. In addition, it allows individual entries in a file to be signed by the applet author so that their origin can be authenticated. The syntax for the jar tool is almost identical to the syntax for the tar command. A jar archive can be use as a class path entry, whether it is compressed or not. 
The 3 types of input files for the jar tool are 

manifest file (optional) 
destination jar file 
files to be archived 
Typical usage is 
        % jar cf myjarfile *.class
In this example, all the class files in the current directory are placed into the file named "myjarfile". A manifest file is automatically generated by the jar tool and is always the first entry in the jar file. By default, it is named META-INF/MANIFEST.MF. The manifest file is the place where any meta-information about the archive is stored. Refer to the JAR file specification for details about how meta-information is stored in the manifest file. 
If you have a pre-existing manifest file that you want the jar tool to use for the new jar archive, you can specify it using the -m option: 

        % jar cmf myManifestFile myJarFile *.class
Be sure that any pre-existing manifest file that you use ends with a new line. The last line of a manifest file will not be parsed if it doesn't end with a new line character. Note that when you specify "cfm" instead of "cmf" (i.e., you invert the order of the "m" and "f" options), you need to specify the name of the jar archive first, followed by the name of the manifest file: 
        % jar cfm myJarFile myManifestFile *.class
The manifest uses RFC822 ascii format, so it is easy to view and process manifest-file contents. 
Beginning with version 1.3 of the Java 2 SDK, the jar utility supports JarIndex, which allows application class loaders to load classes efficiently from jar files. If an application or applet is bundled into multiple jar files,  only the necessary jar files will be downloaded and opened to load classes. This performance optimization is enabled by running jar with the new -i option. It will generate package location information for the specified main jar file and all the jar files it depends on, which need to be specified in the Class-Path attribute of the main jar file's manifest. 

% jar -i main.jar

In this example, and INDEX.LIST file is inserted into the META-INF directory of main.jar's manifest. 
The application class loader will use the information stored in this file for efficient class loading.  Refer to the JarIndex specification for details about how location information is stored in the index file. 

Examples of using the Jar tool to operate on Jar files and Jar file manifests are provided below and in the Jar trail of the Java Tutorial.

OPTIONS

Creates a new or empty archive on the standard output. 

Lists the table of contents from standard output. 
x file 
Extracts all files, or just the named files, from standard input. If file is omitted, then all files are extracted; otherwise, only the specified file or files are extracted. 

The second argument specifies a jar file to process. In the case of creation, this refers to the name of the jar file to be created (instead of on stdout). For table or xtract, the second argument identifies the jar file to be listed or extracted. 

Generates verbose output on stderr. 

Includes manifest information from specified pre-existing manifest file. Example use: 
jar cmf myManifestFile myJarFile *.class
You can add special-purpose name-value attribute headers to the manifest file that aren't contained in the default manifest. Examples of such headers would be those for vendor information, version information, package sealing, and headers to make JAR-bundled applications executable. See the JAR Files trail in the Java Tutorial and the Notes for Developers web page for examples of using the m option. 

Store only, without using ZIP compression. 

Do not create a manifest file for the entries. 

Update an existing JAR file by adding files or changing the manifest. For example, 
jar uf foo.jar foo.class
would add the file foo.class to the existing JAR file foo.jar, and 
jar umf manifest foo.jar
would update foo.jar's manifest with the information in manifest. 

Generate index information for the specified jar file and its dependent jar files. For example, 
jar -i foo.jar
would generate an INDEX.LIST file in foo.jar which contains location information for each package in foo.jar and all the jar files specified in foo.jar's Class-Path attribute. 

-C 
Temporaily changes directories during execution of jar command while processing the next argument. Its operation is intended to be similar to the -C option of the UNIX tar utility. For example, 
jar uf foo.jar -C classes bar.class
would change to the classes directory and add the bar.class from that directory to foo.jar. The following command, 
jar uf foo.jar -C classes . -C bin xyz.class
would change to the classes directory and add to foo.jar all files within the classes directory, but not the classes directory itself, and then change to the bin directory and add xyz.class to foo.jar. 
-Joption 
Pass option to the Java virtual machine, where option is one of the options described on the reference page for the java application launcher. For example, -J-Xms48m sets the startup memory to 48 megabytes. It is a common convention for -J to pass options to the underlying virtual machine. 
If any of "files" is a directory, then that directory is processed recursively. 

EXAMPLES
To add all the files in a particular directory to an archive (overwriting contents if the archive already exists): 
$ ls
0.au            3.au            6.au            9.au            at_work.gif
1.au            4.au            7.au            Animator.class  monkey.jpg
2.au            5.au            8.au            Wave.class      spacemusic.au
$ jar cvf bundle.jar *
adding: 0.au
adding: 1.au
adding: 2.au
adding: 3.au
adding: 4.au
adding: 5.au
adding: 6.au
adding: 7.au
adding: 8.au
adding: 9.au
adding: Animator.class
adding: Wave.class
adding: at_work.gif
adding: monkey.jpg
adding: spacemusic.au
$
If you already have subdirectories for images, audio files and classes in your html directory, I might jar up each directory into a single jar file: 
$ ls
audio classes images
$ jar cvf bundle.jar audio classes images
adding: audio/1.au
adding: audio/2.au
adding: audio/3.au
adding: audio/spacemusic.au
adding: classes/Animator.class
adding: classes/Wave.class
adding: images/monkey.jpg
adding: images/at_work.gif
$ ls -l
total 142
drwxr-xr-x   2 brown    green        512 Aug  1 22:33 audio
-rw-r--r--   1 brown    green      68677 Aug  1 22:36 bundle.jar
drwxr-xr-x   2 brown    green        512 Aug  1 22:26 classes
drwxr-xr-x   2 brown    green        512 Aug  1 22:25 images
$
You can then see the entry names in the jarfile using the jar tool and the "t" option: 
$ ls
audio bundle.jar classes images
$ jar tf bundle.jar
META-INF/MANIFEST.MF
audio/1.au
audio/2.au
audio/3.au
audio/spacemusic.au
classes/Animator.class
classes/Wave.class
images/monkey.jpg
images/at_work.gif
$
Enumerating verbosely (with the "v" option) will tell you more information about the files in the archive, such as their size and last modified date: 
$ jar tvf bundle.jar
   145 Thu Aug 01 22:27:00 PDT 1996 META-INF/MANIFEST.MF
   946 Thu Aug 01 22:24:22 PDT 1996 audio/1.au
  1039 Thu Aug 01 22:24:22 PDT 1996 audio/2.au
   993 Thu Aug 01 22:24:22 PDT 1996 audio/3.au
 48072 Thu Aug 01 22:24:23 PDT 1996 audio/spacemusic.au
 16711 Thu Aug 01 22:25:50 PDT 1996 classes/Animator.class
  3368 Thu Aug 01 22:26:02 PDT 1996 classes/Wave.class
 12809 Thu Aug 01 22:24:48 PDT 1996 images/monkey.jpg
   527 Thu Aug 01 22:25:20 PDT 1996 images/at_work.gif
$
If you bundled a stock trade application(applet) into the following jar files: 

main.jar buy.jar sell.jar other.jar
and you specified in the Class-Path attribute in main.jar's manifest as: 
Class-Path: buy.jar sell.jar other.jar
Then you can use the -i option to speed up your application's class loading time: 
$ jar -i main.jar
an INDEX.LIST file is inserted to the META-INF directory which will enable the application class loader to download the right jar files when it is searching for classes or resources. 
SEE ALSO
The Jar Overview 
The Jar File Specification 
The JarIndex Spec 
Java Tutorial on the Java Software web site.

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 我用rpm命令刚刚装了jdk1.42,但是不知道jdk装到哪个目录下去了,只好来求助于大家了。
  • 在linux的命令模式下,怎样设置JDK?
  • JDK1.3 中的java命令不好用?
  • Application的参数在jdk1.3的命令行下如何设定?
  • 在windowsXP上装上了jdk1.2.2也写了autoexec.bat,可是运行时总说没有这个命令,why?
  • 请问如何用jdk命令编译java源文件?高分求救
  • 请问如何将servlet的.java文件编译成.class文件,我用了jdk的javac命令不好使阿???
  • 我的jdk配置有问题吗?为什么提示总是‘javac’不是内部或外部命令,也不是可运行的程序或批处理文件
  • 用jbuilder7编写成功运行正常的程序在用jdk中java命令执行出错,请帮忙!
  • 我用JDK中的javac命令编译一个test.java。系统提示不能打开test.java该文件!!!
  • 奇怪的问题,我的jdk1.2.2,用javac命令可以编译成class文件,但使用java运行时却说找不到类文件
  • jdk中密钥和证书管理工具keytool常用命令详解
  • jdk中有单步执行的命令吗?如何实现?
  • 使用java jdk中的LinkedHashMap实现简单的LRU算法
  • 在SUN网站下载下载JDK,一个jdk..i586.bin,另一个jdk..i586-rpm.bin,我该选择哪个啊?各有什么区别?
  • 多jdk环境下安装多个tomcat冲突解决配置方法
  • PLEASE,JDK1.3与JDK1.4???????
  • 怎么把JBuilder自带的JDK 1.3换成 JDK 1.4?
  • jdk 1.4.0 servlet 包还在javax包里面嘛?我以前用jdk1.3搞定的东西在jdk1.4 编译不出来啦,高分求教,明天结贴
  • 在哪儿能下载jdk1.4或jdk1.3,很急!在线等待!
  • 我手动删除了jbuilder6自带的jdk,如何才能让jbuilder用我其他地方的jdk呀?
  • JB7能当JDK用吗?哪位朋友告诉我怎么把它当JDK用啊?
  • 一个是SUN JDK一个是MS JDK,怎么回事吗?
  • 我在WIN2000下怎么也安装不上JDK1.3,请问是怎么回事。JDK1.2倒可以安上。
  • 如何使用jdk?我刚装了jdk1.3,不知如何使用?多谢!
  • JDK+HTTPD+WEBSPHERE为什么不解释JSP,httpd.conf中如何设置jdk路径
  • 怎样把JBuilder里的jdk1.2替换成别的目录里已安好的jdk1.3啊?
  • 基于Fedora14下自带jdk1.6版本 安装jdk1.7不识别的解决方法
  • 请问jdk1.3和jdk1.4有什么不同?
  • 请问jdk1.1.8中的javax.activation.DataSource在jdk1.3中在什么包里?
  • jdk1.3 standard 与 jdk1.2 enterprise有何区别?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    NOSQL iis7站长之家