欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

读取jar包的manifest信息 并写入到文件

程序员文章站 2022-05-23 09:02:23
...

import java.io.FileOutputStream;

import java.io.OutputStream;

import java.util.jar.JarFile;

import java.util.jar.Manifest;

 

public class WriteJARFileManifestToFile {

 

    public static void main(String[] args) throws Exception {

 

        // create a new JAR file to read from the specified file

        JarFile jarfile = new JarFile("jsp-api.jar");

 

        // get the manifest for that file

        Manifest manifest = jarfile.getManifest();

 

        // write the manifest to a file

        OutputStream fos = new FileOutputStream("Manifest.MF");

 

        manifest.write(fos);

        fos.close();

 

    }

 

}

 

出处:http://outofmemory.cn/code-snippet/363/jiang-jar-bao-manifest-information-xieru-come-file

 

相关标签: jar manifest