0
    private byte[] loadClassData(String className) {
    ZipInputStream in = null;
    FileInputStream fis = null;
    try {
        fis = new FileInputStream(jarPath);
        in = new ZipInputStream(new BufferedInputStream(fis));
        ZipEntry entry;
        while ((entry = in.getNextEntry()) != null) {
            if (entry.getName().contains(".class")) {
                String outFileName = entry.getName()
                        .substring(0, entry.getName().lastIndexOf('.'))
                        .replace('/', '.');
                if (outFileName.equals(className)) {
                    if (entry.getSize() == -1) {
                        Log.e("loadClassData", "can't read the file!");
                        return null;
                    }
                    byte[] classData = new byte[(int) entry.getSize()];
                    in.read(classData);
                    return classData;
                }
            }
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            fis.close();
            in.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    return null;
}

debug では、常に "in" のサイズが 512 バイトであるため、残りのファイルを取得できず、理由がわかりません。ZipInputStream にはサイズ制限がありますか? ありがとうございました!

4

2 に答える 2

1
 if (entry.getSize() == -1) {

ZipEntry.getSize() エントリ データの非圧縮サイズを返します。不明な場合は -1 を返します。. このチェックを外す必要があります。

「in」のサイズは常に512バイトです

これどうやってチェックしてんの?ZipInputStream にはサイズ プロパティがありません。あなたがチェックしているものは何でも無関係です。

これZipInputStreamは、標準的な使用法の良い例のようです。

于 2011-10-12T04:18:29.360 に答える