C# String byte[] 互转

C# string byte数组转换实现的过程是什么呢?C# string byte数组间的转换需要注意什么呢?C# string byte数组间转换所涉及的方法是什么呢?让我们来看看具体的内容:

C# string byte数组转换之string类型转成byte[]:

byte[] byteArray = System.Text.Encoding.Default.GetBytes ( str );

反过来,byte[]转成string:

string str = System.Text.Encoding.Default.GetString ( byteArray );

其它编码方式的,如System.Text.UTF8Encoding,System.Text.UnicodeEncoding class等;例如:

string类型转成ASCII byte[]:("01" 转成 byte[] = new byte[]{ 0x30, 0x31})

 
 
  1. byte [] byteArray = System.Text.Encoding.ASCII.GetBytes ( str ); 

ASCII byte[] 转成string:(byte[] = new byte[]{ 0x30, 0x31} 转成 "01")

 
 
  1. string  str = System.Text.Encoding.ASCII.GetString ( byteArray ); 

有时候还有这样一些需求:

byte[] 转成原16进制格式的string,例如0xae00cf, 转换成 "ae00cf";new byte[]{ 0x30, 0x31}转成"3031":

 
 
  1. public   static   string  ToHexString (  byte [] bytes )  // 0xae00cf => "AE00CF "  
  2. {  
  3. string  hexString =  string .Empty;  
  4. if  ( bytes !=  null  )  
  5. {  
  6. StringBuilder strB =  new  StringBuilder ();  
  7.  
  8. for  (  int  i = 0; i < bytes.Length; i++ )  
  9. {  
  10. strB.Append ( bytes[i].ToString (  "X2"  ) );  
  11. }  
  12. hexString = strB.ToString ();  
  13. }  
  14. return  hexString;  
  15. }  

C# string byte数组转换之16进制格式的string 转成byte[]

例如, "ae00cf"转换成0xae00cf,长度缩减一半;"3031" 转成new byte[]{ 0x30, 0x31}:

 
 
  1. public   static   byte [] GetBytes( string  hexString,  out   int  discarded)  
  2. {  
  3. discarded = 0;  
  4. string  newString =  "" ;  
  5. char  c;  
  6. // remove all none A-F, 0-9, characters  
  7. for  ( int  i=0; i<HEXSTRING.LENGTH;&NBSP;I++) SPAN  <>
  8. {  
  9. c = hexString[i];  
  10. if  (IsHexDigit(c))  
  11. newString += c;  
  12. else  
  13. discarded++;  
  14. }  
  15. // if odd number of characters, discard last character  
  16. if  (newString.Length % 2 != 0)  
  17. {  
  18. discarded++;  
  19. newString = newString.Substring(0, newString.Length-1);  
  20. }  
  21.  
  22. int  byteLength = newString.Length / 2;  
  23. byte [] bytes =  new   byte [byteLength];  
  24. string  hex;  
  25. int  j = 0;  
  26. for  ( int  i=0; i<BYTES.LENGTH;&NBSP;I++) SPAN  <>
  27. {  
  28. hex =  new  String( new  Char[] {newString[j], newString[j+1]});  
  29. bytes[i] = HexToByte(hex);  
  30. j = j+2;  
  31. }  
  32. return  bytes;  
  33. }  

C# string byte数组转换的问题就向你介绍到这里,希望对你了解和学习C# string byte数组转换有所帮助。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值