InputStream
クラスを使用せずにZipEntry
からZipInputStream
のZipFile
を取得するにはどうすればよいですか?
このように機能します
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();
}
エラー、ZipInputStream
はすでにInputStream.
別のものは必要ありません。次のZipEntry
を取得すると、エントリの先頭にストリームが配置されます。 Javadocを参照してください。
後で使用できる入力ストリームのリストを返すには、以下を使用しました
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());
}