使用 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中文網其他相關文章!