ホームページ >Java >&#&チュートリアル >Java の JarOutputStream を使用して JAR ファイルを作成する際の予期せぬ問題を回避するにはどうすればよいですか?

Java の JarOutputStream を使用して JAR ファイルを作成する際の予期せぬ問題を回避するにはどうすればよいですか?

Mary-Kate Olsen
Mary-Kate Olsenオリジナル
2024-10-29 11:23:02917ブラウズ

How to Avoid Unexpected Issues While Creating JAR Files with Java's JarOutputStream?

JAR ファイル作成のための JarOutputStream のトラブルシューティング

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 サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。