码迷,mamicode.com
首页 > Windows程序 > 详细

关于C# 在TXT写入数据使用UTF-8 bom编码模式

时间:2014-10-31 11:50:40      阅读:1790      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   sp   数据   div   on   log   

C#中通过

1 StreamWriter sw = new StreamWriter(path, true);
2 sw.WriteLine(Content);

这样的代码写入TXT中的数据默认的编码是GB2312格式,那么如何才能使用utf-8的编码格式写入TXT呢?

代码如下:

1 UTF8Encoding utf8 = new UTF8Encoding(false);
2 StreamWriter sw = new StreamWriter(path, true, utf8);

这样确实使用utf-8的编码写入没错,但是却不是BOM的编码模式,那如何才能使用utf-8 BOM编码格式呢?

其实很简单,代码如下:

1 UTF8Encoding utf8BOM = new UTF8Encoding(true);
2  StreamWriter sw = new StreamWriter(path, true, utf8BOM);

 

关于C# 在TXT写入数据使用UTF-8 bom编码模式

标签:style   blog   color   使用   sp   数据   div   on   log   

原文地址:http://www.cnblogs.com/fengguowuhen/p/4064557.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!