Как создать zip-файл из нескольких файлов изображения

Я пытаюсь создать zip-файл из нескольких файлов изображений. Мне удалось создать zip-файл всех изображений, но каким-то образом все изображения были повешены до 950 байт. Я не знаю, что здесь не так, и теперь я не могу открыть изображения были сжаты в этот zip-файл.

вот мой код. Кто-нибудь может мне сказать, что здесь происходит?

String path="c:windowstwain32";
File f=new File(path);
f.mkdir();
File x=new File("e:test");
x.mkdir();
byte []b;
String zipFile="e:testtest.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();

2 ответов


изменить это:

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

для этого:

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

и установите размер буфера в 1024 байта:

b=new byte[1024];

Это моя функция zip я всегда использую для любых файловых структур:

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;
}