ホームページ >Java >&#&チュートリアル >Java の JarOutputStream を使用して JAR ファイルを作成する際の予期せぬ問題を回避するにはどうすればよいですか?
java.util.jar.JarOutputStream を使用してプログラムで JAR ファイルを作成することは簡単そうに見えますが、特定のニュアンスによって予期しない問題が発生する可能性があります。この記事では、これらの文書化されていない癖を調査し、有効な JAR ファイルを作成するための包括的なソリューションを提供します。
JarOutputStream を使用する場合は、次の文書化されていないルールに従うことが重要です。
前述の癖に対処して、マニフェスト ファイルを使用して JAR ファイルを作成する方法の詳細な例を次に示します。
<code class="java">public void run() throws IOException { // Prepare the manifest file Manifest manifest = new Manifest(); manifest.getMainAttributes().put(Attributes.Name.MANIFEST_VERSION, "1.0"); // Create a new JAROutputStream with the manifest JarOutputStream target = new JarOutputStream(new FileOutputStream("output.jar"), manifest); // Iterate over the source directory and add files to the JAR add(new File("inputDirectory"), target); // Close the JAROutputStream target.close(); } private void add(File source, JarOutputStream target) throws IOException { // Prepare the entry path String name = source.getPath().replace("\", "/"); // Handle directories if (source.isDirectory()) { if (!name.endsWith("/")) { name += "/"; } // Create a directory entry with appropriate timestamps JarEntry entry = new JarEntry(name); entry.setTime(source.lastModified()); target.putNextEntry(entry); target.closeEntry(); // Recursively add files within the directory for (File nestedFile : source.listFiles()) { add(nestedFile, target); } } // Handle files else { // Create a file entry with appropriate timestamps JarEntry entry = new JarEntry(name); entry.setTime(source.lastModified()); target.putNextEntry(entry); // Read and write the file contents to the JAR 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>
Byこれらのガイドラインに従って、有効な JAR ファイルをプログラムで自信を持って作成し、その中に含まれるライブラリやその他のリソースに意図したとおりにアクセスできるようにすることができます。
以上がJava の JarOutputStream を使用して JAR ファイルを作成する際の予期せぬ問題を回避するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。