4

JAR 内のフォルダー内のファイル数をカウントする方法を見つけるのに少し時間を費やしました。これを機能させるために、さまざまな目的に役立つコードの例をいくつかまとめました。Eclipse でコードを実行すると問題なくカウントされますが、JAR にエクスポートすると失敗して 0 が返されます。この場合、使用するフォルダー パスは「rules/」です。推奨事項やサンプルをいただければ幸いです。ありがとう。

public static int countFiles(String folderPath) throws IOException { //Counts the number of files in a specified folder
    ClassLoader loader = ToolSet.class.getClassLoader();
    InputStream is = loader.getResourceAsStream(folderPath);
    try {
        byte[] c = new byte[1024];
        int count = 0;
        int readChars = 0;
        boolean empty = true;
        while ((readChars = is.read(c)) != -1) {
            empty = false;
            for (int i = 0; i < readChars; ++i) {
                if (c[i] == '\n') {
                    ++count;
                }
            }
        }
        return (count == 0 && !empty) ? 1 : count;
    } finally {
        is.close();
    }
}

編集: 以下は元の質問と完全には一致しませんが、MadProgrammer のおかげで、コードを削減し、ファイルを数える必要さえなくすことができました。コードブローは、JAR 内のすべてのファイルを検索して「.rules」で終わるファイルを探し、ファイルを開き、「searchBox.getText()」に一致する文字列をファイルで検索し、結果を追加して、次の「 .rules」ファイル。

    StringBuilder results = new StringBuilder();
    int count = 0;
    JarFile jf = null;
    try {
        String path = ToolSet.class.getProtectionDomain().getCodeSource().getLocation().getPath();
        String decodedPath = URLDecoder.decode(path, "UTF-8");
        jf = new JarFile(new File(decodedPath));
        Enumeration<JarEntry> entries = jf.entries();
        while (entries.hasMoreElements()) {
            JarEntry entry = entries.nextElement();
            if (entry.getName().endsWith(".rules")) {
                String name = entry.getName();
                InputStream in = ToolSet.class.getResourceAsStream(name);
                InputStreamReader isr = new InputStreamReader(in);
                BufferedReader bf = new BufferedReader(isr);
                String line;
                while ((line = bf.readLine()) != null) {
                    String lowerText = line.toLowerCase();
                    if(lowerText.indexOf(searchBox.getText().toLowerCase()) > 0) {
                        results.append(line + "\n");
                        count++;
                    }
                }
                bf.close();
            }
        }
    } catch (IOException ex) {
        try {
            jf.close();
        } catch (Exception e2) {
        }
    }
    if(count>0) {
        logBox.setText(results.toString());
    } else {
        logBox.setText("No matches could be found");
    }
4

2 に答える 2

4

Jar ファイルは基本的に、マニフェストを含む Zip ファイルです。

Jar/Zip ファイルには、実際にはディスクのようなディレクトリの概念がありません。それらは、名前を持つエントリのリストを持っているだけです。これらの名前にはある種のパスセパレーターが含まれている場合があり、一部のエントリは実際にはディレクトリとしてマークされている場合があります (それらに関連付けられたバイトはなく、単にマーカーとして機能する傾向があります)。

特定のパス内のすべてのリソースを見つけたい場合は、Jar ファイルを開いてそのエントリを自分で検査する必要があります。たとえば...

JarFile jf = null;
try {
    String path = "resources";
    jf = new JarFile(new File("dist/ResourceFolderCounter.jar"));
    Enumeration<JarEntry> entries = jf.entries();
    while (entries.hasMoreElements()) {
        JarEntry entry = entries.nextElement();
        if (!entry.isDirectory()) {
            String name = entry.getName();
            name = name.replace(path + "/", "");
            if (!name.contains("/")) {
                System.out.println(name);
            }
        }
    }
} catch (IOException ex) {
    try {
        jf.close();
    } catch (Exception e) {
    }
}

さて、これには、使用したい Jar ファイルの名前を知っている必要があります。多くの異なる Jar からリソースをリストしたい場合があるため、これは問題になる可能性があります...

より良い解決策は、ビルド時に何らかの「リソース検索」ファイルを生成することです。これには、必要なリソースのすべての名前が含まれており、特定の名前にキー付けされている可能性もあります...

このようにして、簡単に使用できます...

BufferedReader reader = null;
try {
    reader = new BufferedReader(new InputStreamReader(getClass().getResourceAsInputStream("/resources/MasterResourceList.txt")));
    String name = null;
    while ((name = br.readLine()) != null) {
        URL url = getClass().getResource(name);
    }
} finally {
    try {
        br.close();
    } catch (Exception exp) {
    }
}

例えば...

リソースの数をファイルにシードすることもできます;)

于 2013-09-12T08:02:59.463 に答える
0

これは簡単な解決策です:

InputStream is = loader.getResourceAsStream(folderPath);

//open zip
ZipInputStream zip = new ZipInputStream(is);

//count number of files
while ((zip.getNextEntry()) != null ) {
    UnzipCounter++;
}
于 2013-09-12T08:16:14.173 に答える