使用 java.util.jar.JarOutputStream 以编程方式创建 JAR 文件通常会导致不一致。虽然生成的 JAR 文件可能看起来有效且可提取,但它们在加载库时面临问题。尽管包含所需的文件,Java 仍无法找到它们。以编程方式生成的 JAR 文件与使用 Sun 的 jar 命令行工具创建的文件之间的这种差异需要了解根本问题。
研究 JarOutputStream 的复杂性揭示了在成功创建 JAR 文件时发挥关键作用的三个未记录的怪癖:
为了解决这些问题并正确创建 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>
通过遵守这些准则,以编程方式生成的 JAR 文件将准确反映其内容并消除提取或使用它们时遇到的加载问题。
以上是为什么使用'JarOutputStream”创建的 JAR 文件无法加载库?的详细内容。更多信息请关注PHP中文网其他相关文章!