Я пытаюсь создать текстовый файл, используя VB.Net с кодировкой UTF8, без спецификации. Может ли кто-нибудь помочь мне, как это сделать?
Я могу написать файл с кодировкой 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