使用 Java 打开另一个存档文件中的存档文件
Open an archive file which is in another archive file using Java
我有一个名为 "file.ear" 的文件。该文件包含多个文件,包括一个名为 "file.war" 的 "war" 文件(这也是一个存档)。我打算打开 "file.war" 中的文本文件。此时此刻,我的问题是从这个 "file.war"
创建 ZipFile 对象的最佳方式是什么?
我从 "file.ear" 创建了一个 ZipFile 对象并迭代了条目。当条目为 "file.war" 时,我尝试创建另一个 ZipFile
ZipFile earFile = new ZipFile("file.ear");
Enumeration(? extends ZipEntry) earEntries = earFile.entries();
while (earEntries.hasMoreElements()) {
ZipEntry earEntry = earEntries.nextElement();
if (earEntry.toString().equals("file.war")) {
// in this line I want to get a ZipFile from the file "file.war"
ZipFile warFile = new ZipFile(earEntry.toString());
}
}
我希望从 "file.war" 获得一个 ZipFile 实例,标记的行抛出 FileNotFoundException。
ZipFile
仅适用于 ... 文件。 A ZipEntry
只在内存中,不在硬盘上。
你最好使用 ZipInputStream
:
- 您将
FileInputStream
包装成 ZipInputStream
- 您可以保留 .war 条目的
InputStream
- 你将 .war 依次
InputStream
包装成 ZipInputStream
- 您可以获取文本文件条目,阅读其
InputStream
- 用文本做任何你想做的事
InputStream
!
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.Scanner;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
public class Snippet {
public static void main(String[] args) throws IOException {
InputStream w = getInputStreamForEntry(new FileInputStream("file.ear"), "file.war");
InputStream t = getInputStreamForEntry(w, "prova.txt");
try (Scanner s = new Scanner(t);) {
s.useDelimiter("\Z+");
if (s.hasNext()) {
System.out.println(s.next());
}
}
}
protected static InputStream getInputStreamForEntry(InputStream in, String entry)
throws FileNotFoundException, IOException {
ZipInputStream zis = new ZipInputStream(in);
ZipEntry zipEntry = zis.getNextEntry();
while (zipEntry != null) {
if (zipEntry.toString().equals(entry)) {
// in this line I want to get a ZipFile from the file "file.war"
return zis;
}
zipEntry = zis.getNextEntry();
}
throw new IllegalStateException("No entry '" + entry + "' found in zip");
}
}
HTH!
我有一个名为 "file.ear" 的文件。该文件包含多个文件,包括一个名为 "file.war" 的 "war" 文件(这也是一个存档)。我打算打开 "file.war" 中的文本文件。此时此刻,我的问题是从这个 "file.war"
创建 ZipFile 对象的最佳方式是什么?我从 "file.ear" 创建了一个 ZipFile 对象并迭代了条目。当条目为 "file.war" 时,我尝试创建另一个 ZipFile
ZipFile earFile = new ZipFile("file.ear");
Enumeration(? extends ZipEntry) earEntries = earFile.entries();
while (earEntries.hasMoreElements()) {
ZipEntry earEntry = earEntries.nextElement();
if (earEntry.toString().equals("file.war")) {
// in this line I want to get a ZipFile from the file "file.war"
ZipFile warFile = new ZipFile(earEntry.toString());
}
}
我希望从 "file.war" 获得一个 ZipFile 实例,标记的行抛出 FileNotFoundException。
ZipFile
仅适用于 ... 文件。 A ZipEntry
只在内存中,不在硬盘上。
你最好使用 ZipInputStream
:
- 您将
FileInputStream
包装成ZipInputStream
- 您可以保留 .war 条目的
InputStream
- 你将 .war 依次
InputStream
包装成ZipInputStream
- 您可以获取文本文件条目,阅读其
InputStream
- 用文本做任何你想做的事
InputStream
!
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.Scanner;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
public class Snippet {
public static void main(String[] args) throws IOException {
InputStream w = getInputStreamForEntry(new FileInputStream("file.ear"), "file.war");
InputStream t = getInputStreamForEntry(w, "prova.txt");
try (Scanner s = new Scanner(t);) {
s.useDelimiter("\Z+");
if (s.hasNext()) {
System.out.println(s.next());
}
}
}
protected static InputStream getInputStreamForEntry(InputStream in, String entry)
throws FileNotFoundException, IOException {
ZipInputStream zis = new ZipInputStream(in);
ZipEntry zipEntry = zis.getNextEntry();
while (zipEntry != null) {
if (zipEntry.toString().equals(entry)) {
// in this line I want to get a ZipFile from the file "file.war"
return zis;
}
zipEntry = zis.getNextEntry();
}
throw new IllegalStateException("No entry '" + entry + "' found in zip");
}
}
HTH!