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

C#中字节数组(byte[])和字符串相互转换

时间:2017-04-26 19:22:16      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:archive   pre   数组   style   odi   block   htm   编码   href   

转换过程主要使用到System.Text.Encoding命名空间下的类

1. 字符串转换成字节数组byte[]:

string str = "This is test string";
byte[] byteArray = System.Text.Encoding.Default.GetBytes(str);

2.字节数组换成字符串:

byte[] byteArray = 通过某种方式获取到的字节数组
string str = System.Text.Encoding.Default.GetString(byteArray);

 如果需要其他编码可以使用如:System.Text.UTF8Encoding class、System.Text.UnicodeEncoding class等

 

参考:

C#中有关string和byte[]转换的问题

 
 

C#中字节数组(byte[])和字符串相互转换

标签:archive   pre   数组   style   odi   block   htm   编码   href   

原文地址:http://www.cnblogs.com/tommy-huang/p/6770012.html

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