BOMなしで、UTF8エンコーディングのVB.Netを使用してテキストファイルを作成しようとしています。誰かが私を助けることができますか、これを行う方法は?
UTF8エンコーディングでファイルを書き込むことはできますが、バイトオーダーマークを削除する方法は?
edit1:私はこのようなコードを試しました。
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