1

作为免责声明,我已经看过这篇文章以及链接到它的文章。

我有一个托管在服务器上的文件,该文件是 n 个存档文件,我正在尝试使用方法将其取消存档。当文件预先下载到设备上并且我在我的应用程序中打开并取消归档它时,通过intent-filterfrom Downloads,没有任何问题。但是,当我从我的应用程序中的服务器下载它,然后尝试解压缩它时,我在这一行的标题中得到错误:

ZipFile zipfile = new ZipFile(archive);

指向我下载的存档文件的archive位置在哪里。File我用来下载存档的代码如下:

    String urlPath = parameters[0], localPath = parameters[1];

    try
    {
        URL url = new URL(urlPath);
        URLConnection connection = url.openConnection();
        connection.addRequestProperty("Accept-Encoding", "gzip");
        connection.connect();

        int fileLength = connection.getContentLength();

        InputStream input = new BufferedInputStream(url.openStream());
        OutputStream output = new BufferedOutputStream(new FileOutputStream(localPath));

        byte data[] = new byte[1024];
        long total = 0;
        int count;

        while((count = input.read(data)) != -1)
        {
            total += count;
            publishProgress((int)total * 100 / fileLength);
            output.write(data);
        }

        output.flush();
        output.close();
        input.close();

我最近根据我在顶部引用的帖子添加了编码类型,但我仍然遇到同样的错误。任何帮助都会很棒。

只是为了澄清:

  • 我有一个存档文件
  • 当文件从外部下载并在我的应用程序中打开/取消归档时,它可以很好地取消归档
  • 下载存档然后尝试取消存档时,我收到错误java.util.zip.ZipException: Central Directory Entry not found

我最好的猜测是这是我下载的问题。但是,话虽如此,我不知道我做错了什么。

4

1 回答 1

5

您没有正确复制下载。你必须使用

output.write(data, 0, count);

否则,您正在将任意垃圾写入文件。

于 2013-02-01T23:33:25.327 回答