1. 程式人生 > >C#使用StreamWriter生成UTF-8無BOM編碼格式

C#使用StreamWriter生成UTF-8無BOM編碼格式

使用UTF-8格式產生的檔案,用二進位制檢視會多出“\xef\xbb\xbf”幾個位元組

使用UTF-8無BOM格式:

UTF8Encodingutf8 = new UTF8Encoding(false);

StreamWriter  sw = new StreamWriter (strPath,false,utf8);

sw.WriteLine(strHtml);