4

我有一个文件,例如 test.zip。如果我使用像 winrar 这样的 ZIP 工具,它很容易提取(将 test.zip 解压缩到 test.csv)。但 test.csv 不是 UTF8 格式。我的问题是,当我使用java解压缩它时,它无法读取这个文件。

ZipFile zf = new ZipFile("C:/test.zip");

抛出的异常表示打开该文件时发生错误。

在 java http://java.sun.com/developer/technicalArticles/Programming/compression/上没有任何关于数据格式的文章。也许整个 API 只为 UTF8 格式的数据而设计。那么,如果我必须解压缩除 UTF8 格式以外的数据,如何解压缩呢?尤其是空间大小更大的日文和中文字符(UTF8 除外)。我还在 http://truezip.java.net/6/tutorial.html找到了一个 API,其中提到了这个问题。但是,我没有办法解决它。有什么简单的方法可以解决这个问题吗?尤其是从 JAVA 规范请求传递的 API。

4

5 回答 5

4

JDK6 在 java.util.zip 实现中有一个错误,它无法处理非 USASCII 字符。我使用 Apache Commons commons-compress-1.0.jar 库来修复它。JDK7 已修复 java.util.zip 实现。 http://docs.oracle.com/javase/7/docs/api/java/util/zip/ZipInputStream.html

import java.io.*;
import org.apache.commons.compress.archivers.ArchiveEntry;
import org.apache.commons.compress.archivers.zip.*;

public static int unzip(File inputZip, File outputFolder) throws IOException {
    int count=0;
    FileInputStream fis = null;
    ZipArchiveInputStream zis = null;
    FileOutputStream fos = null;
    try {
        byte[] buffer = new byte[8192];
        fis = new FileInputStream(inputZip);
        zis = new ZipArchiveInputStream(fis, "Cp1252", true); // this supports non-USACII names
        ArchiveEntry entry;
        while ((entry = zis.getNextEntry()) != null) {
            File file = new File(outputFolder, entry.getName());
            if (entry.isDirectory()) {
                file.mkdirs();
            } else {
                count++;
                file.getParentFile().mkdirs();
                fos = new FileOutputStream(file);
                int read;
                while ((read = zis.read(buffer,0,buffer.length)) != -1)
                    fos.write(buffer,0,read);
                fos.close();
                fos=null;
            }
        }
    } finally {
        try { zis.close(); } catch (Exception e) { }
        try { fis.close(); } catch (Exception e) { }
        try { if (fos!=null) fos.close(); } catch (Exception e) { }
    }
    return count;
}
于 2013-12-11T15:39:38.480 回答
3

不,zip 文件不仅适用于 UTF-8 数据。Zip 文件根本不会尝试解释文件中的数据,Java API 也不会。

文件的非 ASCII名称可能存在问题,但文件内容本身根本不应该是问题。在您的情况下,文件的名称看起来只是test.zip,因此您不应该遇到任何名称编码问题。

如果文件无法打开,那么听起来您遇到了不同的问题。您确定该文件存在于您期望的位置吗?

于 2012-07-31T06:06:28.553 回答
1

你可以试试下面的代码吗?有关更多示例,请在此处查看http://java2novice.com/java-collections-and-util/zip/unzip/

FileInputStream fis = null;
    ZipInputStream zipIs = null;
    ZipEntry zEntry = null;
    try {
        fis = new FileInputStream(filePath);
        zipIs = new ZipInputStream(new BufferedInputStream(fis));
        while((zEntry = zipIs.getNextEntry()) != null){
            try{
                byte[] tmp = new byte[4*1024];
                FileOutputStream fos = null;
                String opFilePath = "C:/"+zEntry.getName();
                System.out.println("Extracting file to "+opFilePath);
                fos = new FileOutputStream(opFilePath);
                int size = 0;
                while((size = zipIs.read(tmp)) != -1){
                    fos.write(tmp, 0 , size);
                }
                fos.flush();
                fos.close();
            } catch(Exception ex){

            }
        }
        zipIs.close();
    } catch (FileNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
于 2012-07-31T11:14:42.053 回答
0

试试这个我用来提取所有 zip 文件的代码

try
    {

        final ZipFile zf = new ZipFile("C:/Documents and Settings/satheesh/Desktop/POTL.Zip");

        final Enumeration<? extends ZipEntry> entries = zf.entries();
        ZipInputStream zipInput = null;

        while (entries.hasMoreElements())
        {
            final ZipEntry zipEntry=entries.nextElement();
            final String fileName = zipEntry.getName();
        // zipInput = new ZipInputStream(new FileInputStream(fileName));
            InputStream inputs=zf.getInputStream(zipEntry);
            //  final RandomAccessFile br = new RandomAccessFile(fileName, "r");
                BufferedReader br = new BufferedReader(new InputStreamReader(inputs, "UTF-8"));
                FileWriter fr=new FileWriter(f2);
            BufferedWriter wr=new BufferedWriter(new FileWriter(f2) );

            while((line = br.readLine()) != null)
            {
                wr.write(line);
                System.out.println(line);
                wr.newLine();
                wr.flush();
            }
            br.close();
            zipInput.closeEntry();
        }


    }
    catch(Exception e)
    {
        System.out.print(e);
    }
    finally
    {
        System.out.println("\n\n\nThe had been extracted successfully");

    }

这段代码真的很适合我。

于 2013-02-11T19:13:49.543 回答
0

我记得只有当文件名没有以 UTF8 编码时才会发生这种情况。

如果不禁止第三个组件,请尝试使用 Apache Zip API。

导入 org.apache.tools.zip.ZipEntry;导入 org.apache.tools.zip.ZipFile;

于 2012-07-31T06:29:23.363 回答