Я пытаюсь создать текстовый файл с помощью 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