创建没有 BOM 的文本文件

我尝试了 这种方法但没有成功

我使用的代码:

// 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();

结果是:

enter image description here

无论如何都是 写 BOM,还有特殊的字符(比如剧情 Ø 听) 不正确:-/

我卡住了!

我的目标是创建一个使用 UTF-8作为编码和 8859-1作为 CharSet 的文件

这有那么难吗,还是我今天心情不好?

非常感谢您的帮助,谢谢!

71420 次浏览

它写 BOM 是因为你指示它写在这行

Encoding utf8WithoutBom = new UTF8Encoding(true);

true意味着应该使用

Encoding utf8WithoutBom = new UTF8Encoding(false);

不写 BOM。

我的目标是创建一个使用 UTF-8作为编码和8859-1作为 CharSet 的文件

遗憾的是,这是不可能的,无论您是否编写 UTF-8。也就是说,只要你正在写的字符是在 ISO 拉丁文 -1中,它看起来就像一个 ISO 8859-1文件,但是一旦你输出一个不包含在 ISO 8859-1中的字符(例如 ä,ö,ü) ,这些字符就会被写成一个多字节字符。

要写出真正的 ISO-8859-1,请使用:

Encoding isoLatin1Encoding = Encoding.GetEncoding("ISO-8859-1");

编辑: 在 Balexandre 的评论之后

我使用以下代码进行测试..。

var filePath = @"c:\temp\test.txt";
var sb = new StringBuilder();
sb.Append("dsfaskd jlsadfj laskjdflasjdf asdkfjalksjdf lkjdsfljas dddd jflasjdflkjasdlfkjasldfl asääääjdflkaslj d f");


Encoding isoLatin1Encoding = Encoding.GetEncoding("ISO-8859-1");


TextWriter tw = new StreamWriter(filePath, false, isoLatin1Encoding);
tw.WriteLine(sb.ToString());
tw.Close();

文件看起来很完美,显然是 读取文件时应使用相同的编码