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

C#将字符转换成utf8编码 GB321编码转换

时间:2017-02-27 19:48:06      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:string   return   logs   pyc   nbsp   stat   byte   convert   odi   

public static    string  get_uft8(string unicodeString)
{
UTF8Encoding utf8 = new UTF8Encoding();
Byte[] encodedBytes = utf8.GetBytes(unicodeString);
String decodedString = utf8.GetString(encodedBytes);
return decodedString;
}
技术分享

 

技术分享
   这边我以big5转换gb2312为例
Encoding big5 =Encoding.GetEncoding("big5");
Encoding gb2312 = Encoding.GetEncoding("gb2312");


byte[] big5b= big5.GetBytes("編程無悔!");
//关键也就是这句了
byte[] gb2312b= Encoding.Convert(big5,gb2312,big5b);

string strGb2312 = gb2312.GetString(gb2312b)

C#将字符转换成utf8编码 GB321编码转换

标签:string   return   logs   pyc   nbsp   stat   byte   convert   odi   

原文地址:http://www.cnblogs.com/chengjun/p/6475659.html

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