manifest.mf文件是否显示jar的版本?

时间:2012-11-04 20:46:58

标签: java jar specifications manifest.mf

简介

我创建了一个脚本,通过我们的应用程序服务器上的所有已安装的应用程序循环,为每个找到WEB-INF / lib文件夹的应用程序。然后,对于lib文件夹中的所有第三方jar文件我extract the manifest-file找到 Implementation-Version -key及其值,假设只有一个实现 - 版本公关MANIFEST.MF 。到目前为止一切都很好,但是......然后一些应用程序以某种方式依赖于XML,因此在lib文件夹中就像是

  • xalan.jar
  • XML-apis.jar
  • xerxesImpl.jar

问题

所以,然后关闭阅读我必须承认的Jar-file specification并不能告诉我:我是否能够通过读取manifest.mf中的单个条目来找到jar文件的版本-文件?

manifest.mf

的示例

这是MANIFEST.MF内容的一部分,用于在其中一个应用程序中找到的xalan.jar文件。这表明很难编写一个能够知道所有jar文件版本的脚本。

Manifest-Version: 1.0
Created-By: 1.3.1 (IBM Corporation)
Main-Class: org.apache.xalan.xslt.Process
Class-Path: xercesImpl.jar xml-apis.jar serializer.jar

Name: org/apache/xalan/
Comment: Main Xalan engine implementing TrAX/JAXP
Specification-Title: Java API for XML Processing
Specification-Vendor: Sun Microsystems Inc.
Specification-Version: 1.3
Implementation-Title: org.apache.xalan
Implementation-Version: 2.7.0
Implementation-Vendor: Apache Software Foundation
Implementation-URL: http://xml.apache.org/xalan-j/

Name: org/apache/xpath/
Comment: XPath engine
Implementation-Title: org.apache.xpath
Implementation-Version: 2.7.0
Implementation-Vendor: Apache Software Foundation
Implementation-URL: http://xml.apache.org/xalan-j/

Name: org/apache/xml/
Comment: DTM implementation and utilities
Implementation-Title: org.apache.xml
Implementation-Version: 2.7.0
Implementation-Vendor: Apache Software Foundation
Implementation-URL: http://xml.apache.org/xalan-j/

后记

但是 - 也许我应该创建一个“黑名单”,其中jar会被忽略,例如所有与XML相关的jar。我找到了这个链接Xerces and Xalan locations and versions,显示我无法通过查看manifest.mf文件找到xalan.jar的版本。相反,我需要获得Version-class的输出。

1 个答案:

答案 0 :(得分:1)

  

我是否可以通过读取manifest.mf文件中的单个条目来查找jar文件的版本?

您“可能”能够找到那种版本号,但JAR文件中的版本号是可选的。 (事实上​​,即使是版本的概念也是“可选的”。在Java中没有任何东西要求你对你的代码进行版本控制......虽然它无疑是一个好主意!)

你的“事后想法”的想法当然看起来更简单,但你需要查看相关的规范来决定是否需要它。