这段代码
string xml = XmlHelper.ToXml(queryTemplate);
byte[] xmlb = StringHelper.GetBytes(xml);
var cd = new System.Net.Mime.ContentDisposition
{
// for example foo.bak
FileName = String.Format("{0}_v{1}.xml", queryModel.Name, queryModel.Version),
// always prompt the user for downloading, set to true if you want
// the browser to try to show the file inline
Inline = false,
};
Response.AppendHeader("Content-Disposition", cd.ToString());
return File(xmlb, "application/xml");
转换成后发现字符串编码不正确byte[]
所以我需要string
立即将其放入文件中,就像这样
FileStream xfile = new FileStream(Path.Combine(dldir, filename), FileMode.Create, System.IO.FileAccess.Write);
hssfwb.Write(xfile);
但我不想这样做,我不需要下载后的文件。我只需要将它作为文件下载返回到浏览器,并且不想在之后处理文件删除,当有很多请求时这会变得非常忙碌。
如何更正从string
to的字符编码byte[]
并将其正确返回给浏览器?
GetBytes
函数看起来像这样
public static byte[] GetBytes(string str)
{
byte[] bytes = new byte[str.Length * sizeof(char)];
System.Buffer.BlockCopy(str.ToCharArray(), 0, bytes, 0, bytes.Length);
return bytes;
}