如何用Java读取.zip文件中的文件?

时间:2016-02-10 11:25:51

标签: java zip extract

我想解析一个.zip文件。 .zip文件包含一个文件夹。该文件夹又包含几个文件。我想在不将.zip文件写入磁盘的情况下读取所有文件。我有以下代码:

        zipFile = new ZipFile(file);
        Enumeration<? extends ZipEntry> entries = zipFile.entries();

        while(entries.hasMoreElements()){
            ZipEntry entry = entries.nextElement();
            InputStream stream = zipFile.getInputStream(entry);
            InputStreamReader reader = new InputStreamReader(stream, "UTF-8");
            Scanner inputStream = new Scanner(reader);
            inputStream.nextLine();

            while (inputStream.hasNext()) {
                String data = inputStream.nextLine(); // Gets a whole line
                String[] line = data.split(SEPARATOR); // Splits the line up into a string array
            }

            inputStream.close();
            stream.close();
        }
        zipFile.close();

问题是这仅在文件直接位于.zip文件中时才有效。我如何调整我的代码,以便当文件位于.zip文件中的文件夹中时它也能正常工作?

1 个答案:

答案 0 :(得分:3)

您可以将读取内容的代码放在if

ZipEntry entry = entries.nextElement();
if (!entry.isDirectory()) {
    InputStream stream = zipFile.getInputStream(entry);
...
    stream.close();
}