Add version to Jar packaging

1. 

Add version to Jar packagingTag(s): Environment
Let's say we have the following class (package is mandatory)
package com.rgagnon;

public class Hello {
 public static void main(String[] args) {
    new Hello().say("Hello World!");
    }
 
 public void say(String s) {
    System.out.println(s);
 }
}
First create a MANIFEST.MF file :
Manifest-Version: 1.0
Main-Class: com.rgagnon.Hello
Then build the executable Jar and run it.
>jar cvfm hello.jar MANIFEST.MF com\rgagnon\Hello.class

>java -jar hello.jar
Hello World!
Now modify the manifest to include versioning information.
Manifest-Version: 1.0
Main-Class: com.rgagnon.Hello
Specification-Version: 2.1
Implementation-Version: 1.1
Modify the class to display the version.
package com.rgagnon;

public class Hello {
 public static void main(String[] args) {
    new Hello().say("Hello World!");
    }
 
 Hello() {
   Package p = this.getClass().getPackage();
   System.out.println("Hello Specification Version : " 
                         + p.getSpecificationVersion());
   System.out.println("Hello Implementation Version : " 
                         + p.getImplementationVersion());
 }
 
 public void say(String s) {
    System.out.println(s);
 }
}
Compile and rebuild the Jar and execute
> jar cvfm hello.jar MANIFEST.MF com\rgagnon\Hello.class

> java -jar hello.jar
Specification Version : 2.1
Implementation Version : 1.1
Hello World!

See also this Howto.

This example opens a given Jar and outputs its version information.

package com.rgagnon.howto;

import java.util.jar.*;

public class JarUtils {
  public static String getJarImplementationVersion(String jar)
       throws java.io.IOException
  {
    JarFile jarfile = new JarFile(jar);
    Manifest manifest = jarfile.getManifest();
    Attributes att = manifest.getMainAttributes();
    return att.getValue("Implementation-Version");
  }

  public static String getJarSpecificationVersion(String jar)
       throws java.io.IOException
  {
    JarFile jarfile = new JarFile(jar);
    Manifest manifest = jarfile.getManifest();
    Attributes att = manifest.getMainAttributes();
    return att.getValue("Specification-Version");
  }
  public static void main(String[] args) throws java.io.IOException{
    String javaMailJar = "C:/Program Files/Java/jre1.5.0/lib/mail.jar";

    System.out.println("Specification-Version: " 
        + JarUtils.getJarSpecificationVersion(javaMailJar));
    System.out.println("Implementation-Version: " 
        + JarUtils.getJarImplementationVersion(javaMailJar));
    /*
     * output :
     *      Specification-Version: 1.3
     *      Implementation-Version: 1.3.1
     */
  }
}

2. 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值