最佳答案
我尝试了 这种方法但没有成功
我使用的代码:
// File name
String filename = String.Format("{0:ddMMyyHHmm}", dtFileCreated);
String filePath = Path.Combine(Server.MapPath("App_Data"), filename + ".txt");
// Process
myObject pbs = new myObject();
pbs.GenerateFile();
// pbs.GeneratedFile is a StringBuilder object
// Save file
Encoding utf8WithoutBom = new UTF8Encoding(true);
TextWriter tw = new StreamWriter(filePath, false, utf8WithoutBom);
foreach (string s in pbs.GeneratedFile.ToArray())
tw.WriteLine(s);
tw.Close();
// Push Generated File into Client
Response.Clear();
Response.ContentType = "application/vnd.text";
Response.AppendHeader("Content-Disposition", "attachment; filename=" + filename + ".txt");
Response.TransmitFile(filePath);
Response.End();
结果是:
无论如何都是 写 BOM,还有特殊的字符(比如剧情 Ø 听) 不正确:-/
我卡住了!
我的目标是创建一个使用 UTF-8作为编码和 8859-1作为 CharSet 的文件
这有那么难吗,还是我今天心情不好?
非常感谢您的帮助,谢谢!