如何创建的多个图像文件的zip文件(How to create a zip file of mult

2019-09-03 03:38发布

我想创建的多个图像文件的zip文件。 我已经成功地创建所有图像的压缩文件,但不知何故所有图像已经被处以绞刑,以950个字节。 我不知道怎么回事错在这里,现在我无法打开图像被压缩成zip文件。

这里是我的代码。 任何人都可以让我知道发生了什么事情吗?

String path="c:\\windows\\twain32";
File f=new File(path);
f.mkdir();
File x=new File("e:\\test");
x.mkdir();
byte []b;
String zipFile="e:\\test\\test.zip";
FileOutputStream fout=new FileOutputStream(zipFile);
ZipOutputStream zout=new ZipOutputStream(new BufferedOutputStream(fout));


File []s=f.listFiles();
for(int i=0;i<s.length;i++)
{
    b=new byte[(int)s[i].length()];
    FileInputStream fin=new FileInputStream(s[i]);
    zout.putNextEntry(new ZipEntry(s[i].getName()));
    int length;
    while((length=fin.read())>0)
    {
        zout.write(b,0,length);
    }
    zout.closeEntry();
    fin.close();
}
zout.close();

Answer 1:

更改此:

while((length=fin.read())>0)

为此:

while((length=fin.read(b, 0, 1024))>0)

并设置缓冲区大小为1024个字节:

b=new byte[1024];


Answer 2:

这是我的拉链功能我总是用任何文件结构:

public static File zip(List<File> files, String filename) {
    File zipfile = new File(filename);
    // Create a buffer for reading the files
    byte[] buf = new byte[1024];
    try {
        // create the ZIP file
        ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipfile));
        // compress the files
        for(int i=0; i<files.size(); i++) {
            FileInputStream in = new FileInputStream(files.get(i).getCanonicalName());
            // add ZIP entry to output stream
            out.putNextEntry(new ZipEntry(files.get(i).getName()));
            // transfer bytes from the file to the ZIP file
            int len;
            while((len = in.read(buf)) > 0) {
                out.write(buf, 0, len);
            }
            // complete the entry
            out.closeEntry();
            in.close();
        }
        // complete the ZIP file
        out.close();
        return zipfile;
    } catch (IOException ex) {
        System.err.println(ex.getMessage());
    }
    return null;
}


文章来源: How to create a zip file of multiple image files