码迷,mamicode.com
首页 > 编程语言 > 详细

Unity C# 的编码方式 Encoding

时间:2018-05-29 17:12:55      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:put   span   odi   string   转换   默认   new   style   def   

在开发过程 中,经常会遇到一些编码方式的转换。在C#中的实现。

UTF-8

UTF8Encoding utf8 = new UTF8Encoding();
string utf8Str = utf8.GetString(utf8.GetBytes(input));

或者

//注意Encoding.UTF8.GetString 与 Encoding.UTF8.GetBytes 的编码方式必须是一至的。
            byte[] infos = Encoding.UTF8.GetBytes(input);
            string utf8Str = Encoding.UTF8.GetString(infos);

还有其的方式如ASCII、ISO_8859_1、Default等。。

其中Default,是指操作系统默认的编码方式。

Unity C# 的编码方式 Encoding

标签:put   span   odi   string   转换   默认   new   style   def   

原文地址:https://www.cnblogs.com/vincent1392923/p/9105804.html

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