简体   繁体   中英

Zip file shows empty on trying to extract

I am using the following code to download a set of files stored in my database by putting them into a zip file:

SqlDataAdapter adp = new SqlDataAdapter("select FILE_NAME, FILE, content_type from tbl where id = " + "168", Configuration.getSQLConnString("ConnStr"));
DataTable dtFiles = new DataTable();
adp.Fill(dtFiles);

if (dtFiles.Rows.Count > 0)
{
    using (var zipStream = new ZipOutputStream(Response.OutputStream))
    {
        foreach (DataRow dr in dtFiles.Rows)
        {
            byte[] bytes;
            string fileName, contentType;
            fileName = dr["File_Name"].ToString();
            bytes = (byte[])dr["File"];
            contentType = dr["Content_Type"].ToString();
            Response.Clear();
            Response.Buffer = true;
            Response.Charset = "";
            Response.Cache.SetCacheability(HttpCacheability.NoCache);
            Response.AddHeader("Content-Disposition", "attachment; filename=Files.zip");
            Response.ContentType = "application/zip";
            byte[] fileBytes = bytes;
            ZipEntry fileEntry = new ZipEntry(ZipEntry.CleanName(fileName));
            fileEntry.Size = fileBytes.Length;
            zipStream.SetLevel(3);
            zipStream.PutNextEntry(fileEntry);
            zipStream.Write(fileBytes, 0, fileBytes.Length);
            zipStream.CloseEntry();   
        }        
        zipStream.Flush();
        zipStream.Close();
    }
}

The zip file gets generated and is downloaded and it also shows me a size of about 2Mb but then when I extract the zip file it shows me the following error:

压缩(压缩)文件夹为空。 Can someone please point out what is that I am doing wrong?

ZipOutputStream did not help me at all; tried breaking my head over it but nothing helped. Then I came across this library called DotNetZip and here's the code to download files stored in the database into a zip file:

using (ZipFile zip = new ZipFile())
{
    foreach (DataRow dr in dtResumes.Rows)
    {
        zip.AddEntry(dr["File_Name"].ToString(), (byte[])dr["Resume"]);
    }

    zip.Save("C:\\Test\\MyZipFile.zip");
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM