jar文件是ZIP文件格式的扩展,包含了一个清单文件。清单文件是JAR文件专用的特殊文件,可能包含各种设置。其中一些是主类、可选数据(即作者、版本等)和代码签名信息。
我们可以使用兼容zip的工具来查看和提取部分或全部存档。我们还可以包括一个jars或libs子目录,用于包含依赖性jar。由于jar是zip文件的扩展,我们可以包括任何文件或目录。
为了简化创建JAR文件的过程,我们创建了一个单独的、普通的旧Java对象(POJO)类,它封装了我们的操作。我们可以将条目放入清单文件,创建JAR文件,添加文件或目录。
我们还可以创建方法来执行从JAR中删除,甚至向现有的JAR追加条目,尽管这些操作需要完全读取和重写JAR。
为了创建一个JAR文件,我们必须首先开始制定清单。
public class JarTool { private Manifest manifest = new Manifest(); public void startManifest() { manifest.getMainAttributes().put(Attributes.Name.MANIFEST_VERSION, "1.0"); } }
如果我们希望jar是可执行的,我们必须设置主类。
public void setMainClass(String mainFQCN) { if (mainFQCN != null && !mainFQCN.equals("")) { manifest.getMainAttributes().put(Attributes.Name.MAIN_CLASS, mainFQCN); } }
另外,如果我们想指定额外的属性,我们可以把它们添加到清单中,比如说。
addToManifest("Can-Redefine-Classes", "true");
下面是这个方法。
public void addToManifest(String key, String value) { manifest.getMainAttributes().put(new Attributes.Name(key), value); }
随着清单的完成,我们现在可以把条目写到JAR文件中。要做到这一点,我们必须首先打开JAR。
public JarOutputStream openJar(String jarFile) throws IOException { return new JarOutputStream(new FileOutputStream(jarFile), manifest); }
在向JAR中添加文件时,Java使用Solaris风格的文件名,使用正斜杠作为分隔符(/)。注意,我们可以添加任何类型的文件,包括其他JAR文件或空目录。这对于包括依赖关系来说真的很方便。
另外,因为JAR文件是classpath的一种形式,我们必须指定我们希望在JAR中使用绝对路径的哪一部分。对于我们的目的,根路径将是我们项目的classpath。
了解了这一点,我们现在可以用这个方法完成我们的JarTool类。
public void addFile(JarOutputStream target, String rootPath, String source) throws FileNotFoundException, IOException { String remaining = ""; if (rootPath.endsWith(File.separator)) { remaining = source.substring(rootPath.length()); } else { remaining = source.substring(rootPath.length() + 1); } String name = remaining.replace("\\","/"); JarEntry entry = new JarEntry(name); entry.setTime(new File(source).lastModified()); target.putNextEntry(entry); BufferedInputStream in = new BufferedInputStream(new FileInputStream(source)); byte[] buffer = new byte[1024]; while (true) { int count = in.read(buffer); if (count == -1) { break; } target.write(buffer, 0, count); } target.closeEntry(); in.close(); }
为了证明可执行jar的最低要求,我们将编写一个应用类,然后看看它是如何工作的。
public class Driver { public static void main(String[] args) throws IOException { JarTool tool = new JarTool(); tool.startManifest(); tool.addToManifest("Main-Class", "com.javanorth.createjar.HelloWorld"); JarOutputStream target = tool.openJar("HelloWorld.jar"); tool.addFile(target, System.getProperty("user.dir") + "\\src\\main\\java", System.getProperty("user.dir") + "\\src\\main\\java\\com\\javanorth\\createjar\\HelloWorld.class"); target.close(); } }
HelloWorld类是一个非常简单的类,只有一个main()方法可以打印出文本。
public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World!"); } }
为了证明它的作用,我们有这个例子。
$ javac -cp src/main/java src/main/java/com/javanorth/createjar/HelloWorld.java
$ javac -cp src/main/java src/main/java/com/javanorth/createjar/JarTool.java
$ javac -cp src/main/java src/main/java/com/javanorth/createjar/Driver.java
$ java -cp src/main/java com/javanorth/createjar/Driver
$ java -jar HelloWorld.jar
Hello World!
在这里,我们已经编译了每个类,然后执行了Driver类,这将创建HelloWorld jar。最后,我们执行了这个jar,结果是打印出了 "Hello World "信息。
上面的命令应该从项目所在地执行。
The above is the detailed content of How to create JAR files programmatically in Java. For more information, please follow other related articles on the PHP Chinese website!