「労働者が自分の仕事をうまくやりたいなら、まず自分の道具を研ぎ澄まさなければなりません。」 - 孔子、「論語。陸霊公」
表紙 > プログラミング > Java の JarOutputStream を使用して JAR ファイルを作成する際の予期せぬ問題を回避するにはどうすればよいですか?

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

2024 年 11 月 9 日に公開
ブラウズ:168

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

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

java.util.jar.JarOutputStream を使用してプログラムで JAR ファイルを作成することは簡単そうに見えますが、特定のニュアンスによって予期せぬ問題が発生する可能性があります。この記事では、これらの文書化されていない癖を調査し、有効な JAR ファイルを作成するための包括的なソリューションを提供します。

癖を理解する

JarOutputStream を使用する場合は、次の文書化されていないルールに従うことが重要です:

  • ディレクトリ名は '/' スラッシュで終わる必要があります。
  • パスは '\' ではなく '/' スラッシュを使用する必要があります。
  • エントリは '/' スラッシュで始めることはできません.

正しいアプローチの実装

前述の問題に対処する、マニフェスト ファイルを使用して JAR ファイルを作成する方法の詳細な例を次に示します。

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();
        }
    }
}

これらのガイドラインに従うことで、有効な JAR ファイルをプログラムで自信を持って作成できるようになり、ファイル内に含まれるライブラリやその他のリソースに意図したとおりにアクセスできるようになります。

最新のチュートリアル もっと>

免責事項: 提供されるすべてのリソースの一部はインターネットからのものです。お客様の著作権またはその他の権利および利益の侵害がある場合は、詳細な理由を説明し、著作権または権利および利益の証拠を提出して、電子メール [email protected] に送信してください。 できるだけ早く対応させていただきます。

Copyright© 2022 湘ICP备2022001581号-3