web-dev-qa-db-ja.com

ZipInputStreamからのZipEntryのgetInputStream(ZipFileクラスを使用しない)

InputStreamクラスを使用せずにZipEntryからZipInputStreamZipFileを取得するにはどうすればよいですか?

25

このように機能します

static InputStream getInputStream(File Zip, String entry) throws IOException {
    ZipInputStream zin = new ZipInputStream(new FileInputStream(Zip));
    for (ZipEntry e; (e = zin.getNextEntry()) != null;) {
        if (e.getName().equals(entry)) {
            return zin;
        }
    }
    throw new EOFException("Cannot find " + entry);
}

public static void main(String[] args) throws Exception {
    InputStream in = getInputStream(new File("f:/1.Zip"), "launch4j/LICENSE.txt");
    Scanner sc = new Scanner(in);
    while(sc.hasNextLine()) {
        System.out.println(sc.nextLine());
    }
    in.close();
}
18

エラー、ZipInputStreamはすでにInputStream.別のものは必要ありません。次のZipEntryを取得すると、エントリの先頭にストリームが配置されます。 Javadocを参照してください。

18
user207421

後で使用できる入力ストリームのリストを返すには、以下を使用しました

public static List<InputStream> listResourcesInJar(URL jar) throws IOException{
    ZipInputStream zipInputStream = new ZipInputStream(jar.openStream());
    ZipEntry zipEntry = null;

    List<InputStream> inputStreams = new ArrayList<>();

    while ((zipEntry = zipInputStream.getNextEntry()) != null) {
        String entryName = zipEntry.getName();
        if (entryName.endsWith(".xsd")) {
            inputStreams.add(convertToInputStream(zipInputStream));
        }
    }
    return inputStreams;
}

private static InputStream convertToInputStream(final ZipInputStream inputStreamIn) throws IOException {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    IOUtils.copy(inputStreamIn, out);
    return new ByteArrayInputStream(out.toByteArray());
}
1
Grant