最佳答案
我正在尝试使用带 UTF8编码的 VB.Net 创建一个文本文件,没有 BOM。谁能帮帮我,怎么做?
我可以用 UTF8编码写文件,但是,如何从它删除字节顺序标记?
编者: 我尝试过这样的代码;
Dim utf8 As New UTF8Encoding()
Dim utf8EmitBOM As New UTF8Encoding(True)
Dim strW As New StreamWriter("c:\temp\bom\1.html", True, utf8EmitBOM)
strW.Write(utf8EmitBOM.GetPreamble())
strW.WriteLine("hi there")
strW.Close()
Dim strw2 As New StreamWriter("c:\temp\bom\2.html", True, utf8)
strw2.Write(utf8.GetPreamble())
strw2.WriteLine("hi there")
strw2.Close()
1.html 仅使用 UTF8编码创建,2.html 使用 ANSI 编码格式创建。
简化方法 -http://whatilearnttuday.blogspot.com/2011/10/write-text-files-without-byte-order.html