以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  需要写入 无BOM的UTF8记事本。 WriteAllText(file, text, append, Encoding)  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=123308)

--  作者:ysq128
--  发布时间:2018/8/11 20:39:00
--  需要写入 无BOM的UTF8记事本。 WriteAllText(file, text, append, Encoding)
需要写入 无BOM的UTF8记事本。 WriteAllText(file, text, append, Encoding)
感谢!不知道怎么弄。

--  作者:有点甜
--  发布时间:2018/8/12 22:49:00
--  

Dim utf8WithoutBom = New System.Text.UTF8Encoding(False)
Using sink = New io.StreamWriter("d:\\aaa.txt", False, utf8WithoutBom)
sink.WriteLine("内容")
End Using