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