下载ASP后C#中没有数据文件夹

时间:2015-05-15 15:52:27

标签: c# asp.net zip

首先让我说,我确信这是非常简单的事情,不幸的是我似乎无法弄明白。所以这是我的问题,我查询数据库,返回我需要的内容,将其全部压缩,并提示用户保存。当您尝试打开它时,该文件夹中没有文件。我的数据在哪里?我介入了所有内容,似乎正确地编写了所有内容。任何帮助将不胜感激!!

if (e.CommandName == "DownloadAttachment")
    {
        e.Canceled = true;
        // Create a zip and send it to the client.
        //Response.Write(@"<script language='javascript'>alert('Details saved successfully')</script>");
        var item = e.Item as GridEditableItem;
        fileId = (int)item.GetDataKeyValue("Unique");
        FileData[] allrecords = null;
        using (
            SqlConnection conn =
                new SqlConnection(ConfigurationManager.ConnectionStrings["PtcDbModelEntities"].ConnectionString))
        {
            using (
                SqlCommand comm = new SqlCommand("Select Unique1, BinaryData, FileName from PtcDbTracker.dbo.CafFileTable where Unique1=@fileId AND FileName IS NOT NULL", conn))
            {
                comm.Parameters.Add(new SqlParameter("@fileId", fileId));
                conn.Open();
                using (var reader = comm.ExecuteReader())
                {
                    var list = new List<FileData>();
                    while (reader.Read())
                    {
                        list.Add(new FileData { Unique1 = reader.GetInt32(0) });
                        long len = reader.GetBytes(1, 0, null, 0, 0);
                        Byte[] buffer = new byte[len];
                        list.Add(new FileData { BinaryData = (byte)reader.GetBytes(1, 0, buffer, 0, (int)len), FileName = reader.GetString(2) });
                        allrecords = list.ToArray();
                    }
                }
                conn.Close();
            }
        }

        using (var compressedFileStream = new MemoryStream())
        {
            //Create an archive and store the stream in memory.

            using (var zipArchive = new ZipArchive(compressedFileStream, ZipArchiveMode.Update, false))
            {
                if (allrecords != null)
                {
                    foreach (var record in allrecords)
                    {
                        //Create a zip entry for each attachment
                        if (record.FileName != null)
                        {

                            var zipEntry = zipArchive.CreateEntry(record.FileName);

                            //Get the stream of the attachment
                            using (var originalFileStream = new MemoryStream(record.BinaryData))
                            {
                                using (var zipEntryStream = zipEntry.Open())
                                {
                                    //Copy the attachment stream to the zip entry stream
                                    originalFileStream.CopyTo(zipEntryStream);
                                }
                            }
                        }
                    }
                }
                Response.ClearContent();
                Response.ClearHeaders();
                Response.BinaryWrite(compressedFileStream.ToArray());
                Response.AppendHeader("Content-Disposition", "Attachment; filename=result.zip");
                Response.Flush();
                Response.Close();
                zipArchive.Dispose();
                //How Do I Prompt for open or save?
            }
        }

1 个答案:

答案 0 :(得分:0)

您确定BinaryWrite获得了有效的ByteArray吗?

在任何情况下,这是一个经过测试的方法,用于将文件输出到Response,并且通常需要二进制附件的标题:

class User
{
    public function login($data)
    {
        $success = Auth::attempt([
            'user' => $data['user'],
            'password' => $data['password'],
        ], $data['remember']);

        if ($success) {
            return redirect()->to(url('/'));
        }
    }
}