使用 JarOutputStream 创建 JAR 文件
为了以编程方式生成 JAR 文件,经常使用 JarOutputStream。但是,必须避免 JarOutputStream 中某些未记录的怪癖:
1。以斜杠结尾的目录:
JAR 文件中的目录名称必须以“/”斜杠结尾。
2.使用正斜杠的路径:
在路径中使用正斜杠“/”,而不是反斜杠“”。
3.条目名称中没有前导斜杠:
条目名称不应以“/”斜杠开头。
更正的示例代码:
以下更正后的代码使用清单文件构造有效的 JAR 文件:
<code class="java">public void run() throws IOException { Manifest manifest = new Manifest(); manifest.getMainAttributes().put(Attributes.Name.MANIFEST_VERSION, "1.0"); JarOutputStream target = new JarOutputStream(new FileOutputStream("output.jar"), manifest); add(new File("inputDirectory"), target); target.close(); } private void add(File source, JarOutputStream target) throws IOException { String name = source.getPath().replace("\", "/"); if (source.isDirectory()) { if (!name.endsWith("/")) { name += "/"; } JarEntry entry = new JarEntry(name); entry.setTime(source.lastModified()); target.putNextEntry(entry); target.closeEntry(); for (File nestedFile : source.listFiles()) { add(nestedFile, target); } } else { JarEntry entry = new JarEntry(name); entry.setTime(source.lastModified()); target.putNextEntry(entry); try (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(); } } }</code>
以上是使用 JarOutputStream 创建 JAR 文件时如何避免未记录的怪癖?的详细内容。更多信息请关注PHP中文网其他相关文章!