文件夹是文件不压缩

时间:2015-06-04 04:33:24

标签: java android zip

我已经实现了Zip文件夹或文件然后下载并将其保存到内存中。 我的问题是,它没有任何错误下载,但我没有得到Zip文件,如果我点击下载的文件,它显示:

  

无法显示

  

无法显示讯息。

我的代码:

String fileName = tvtitle.getText().toString();
        String fileExtension = tvtype.getText().toString();
        File imageDirectory = new File(Path);
        imageDirectory.mkdirs();
        int fileLength = connection.getContentLength();
        String _path = Path;
        input = connection.getInputStream();
        File outputFile = new File(_path, fileName + fileExtension);
        FileOutputStream fos = new FileOutputStream(outputFile);
        ZipOutputStream zos = new ZipOutputStream(fos);
        File srcFile = new File(input.toString());
        byte[] buffer = new byte[1024];
        zos.putNextEntry(new ZipEntry(srcFile.getName()));
        int length;
        while ((length = input.read(buffer)) > 0) {

            zos.write(buffer, 0, length);

        }
        zos.closeEntry();
        input.close();
        zos.close();

1 个答案:

答案 0 :(得分:1)

我只是不知道这个变量的类型是什么“输入

我认为您应该将FileInputStream(读取源文件)与FileOutputStream配对(设置为目标/ zip文件)。

这行代码:

File outputFile = new File(_path, fileName + fileExtension);

您的输出必须是.zip文件吗? 所以,它应该是:

File outputFile = new File(_path, fileName + ".zip");

或类似的东西

就像这样

String fileName = tvtitle.getText().toString();
String fileExtension = tvtype.getText().toString();
File imageDirectory = new File(Path);
FileInputStream fis = new FileInputStream(imageDirectory);
ZipEntry zipEntry = new ZipEntry(fileName);

FileOutputStream fos = new FileOutputStream("test.zip");
ZipOutputStream zos = new ZipOutputStream(fos);
zos.putNextEntry(zipEntry);
byte[] bytes = new byte[1024];
int length;
    while ((length = fis.read(bytes)) >= 0) {
        zos.write(bytes, 0, length);
    }
zos.closeEntry();
fis.close();
zos.close();
fos.close();