关于C# 在TXT写入数据使用UTF-8 bom编码模式
2020-12-13 14:38
标签:style blog color 使用 sp 数据 div on log C#中通过 这样的代码写入TXT中的数据默认的编码是GB2312格式,那么如何才能使用utf-8的编码格式写入TXT呢? 代码如下: 这样确实使用utf-8的编码写入没错,但是却不是BOM的编码模式,那如何才能使用utf-8 BOM编码格式呢? 其实很简单,代码如下: 关于C# 在TXT写入数据使用UTF-8 bom编码模式 标签:style blog color 使用 sp 数据 div on log 原文地址:http://www.cnblogs.com/fengguowuhen/p/4064557.html1 StreamWriter sw = new StreamWriter(path, true);
2 sw.WriteLine(Content);
1 UTF8Encoding utf8 = new UTF8Encoding(false);
2 StreamWriter sw = new StreamWriter(path, true, utf8);
1 UTF8Encoding utf8BOM = new UTF8Encoding(true);
2 StreamWriter sw = new StreamWriter(path, true, utf8BOM);
文章标题:关于C# 在TXT写入数据使用UTF-8 bom编码模式
文章链接:http://soscw.com/essay/34294.html