C# string byte数组转换解析

开发 后端
C# string byte数组转换是我们实际工作中所遇到的需求,那么如何实现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
  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
  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数组转换有所帮助。

【编辑推荐】

  1. C#创建文件的实战应用示例解析
  2. 全面解析C#创建XML文件的具体操作
  3. 搞定C#创建PDF文件的五大步骤
  4. C#创建一个文件的具体实现浅析
  5. C#打开一个文件的操作详解
责任编辑:仲衡 来源: 博客园
相关推荐

2009-08-31 14:56:32

C# Byte数组转换

2009-08-28 14:25:57

C# byte数组

2009-08-28 10:44:46

C#字符数组转换

2009-09-02 16:30:20

C#定义数组

2009-09-01 16:35:55

C#操作String数

2009-09-02 16:41:56

C#声明数组

2009-09-01 18:32:32

C#动态数组

2009-09-02 16:14:21

C#动态创建数组

2009-09-02 16:20:22

C#动态创建数组

2009-08-12 11:24:25

C# String对象

2009-08-28 11:09:35

C#数组初始化

2009-08-24 09:55:26

C#接口转换

2009-09-01 17:06:20

C#命名管道

2009-08-27 13:50:08

C# StringBu

2009-08-26 13:07:07

C#交错数组

2009-08-07 11:26:53

C#数组结构

2009-09-17 16:53:15

C#数组

2009-09-02 10:58:02

C#动态数组

2024-03-29 11:33:23

转换[]bytestring

2021-07-05 07:55:11

String[]byte转换
点赞
收藏

51CTO技术栈公众号