这是我的代码
private void sendToClient(Dictionary<string, string> reportDic)
{
Response.Clear();
Response.BufferOutput = false;
String ReadmeText = "some text";
Response.ContentType = "application/zip";
Response.AddHeader("content-disposition", "filename=" + "filename.zip");
using (ZipFile zip = new ZipFile())
{
zip.AddEntry("Readme.txt", ReadmeText);
zip.Save(Response.OutputStream);
}
Response.Close();
}
在这一点上,我只是想返回一个zip文件与上写着“一些文本”在文档中的zip内的readme.txt文件。
我得到的是一个zip文件名为filename.zip(预期)与文档的readme.txt(预期)与doucment(意外)的内部没有任何文字。
此代码是从示例几乎一字不差这里 。 这使我的事情其他人也遇到了这个确切的问题。
我的最终目标是做这样的事情。
private void sendToClient(Dictionary<string, string> reportDic)
{
Response.BufferOutput = false;
Response.ContentType = "application/zip";
Response.AddHeader("content-dispostion", "filename=text.zip");
Response.ContentEncoding = Encoding.Default;
Response.Charset = "";
using (ZipFile zip = new ZipFile())
{
foreach (string key in reportDic.Keys)
{
zip.AddEntry(key, reportDic[key]);
}
zip.Save(Response.OutputStream);
}
Response.Close();
}
添加三个字符串作为文件的zip文件,但我会满足于获得例如现在的工作。
任何人有什么建议?
谢谢
--UPDATE--这应该工作,其实如果我把它复制到一个新的项目,它的工作原理就像广告,我必须有dll的有毒混合或在我的项目的一些腐败现象,这是晦涩或东西。 精彩。