天天看點

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. for ( int i = 0; i < bytes.Length; i++ )  
  8. {  
  9. strB.Append ( bytes[i].ToString ( "X2" ) );  
  10. }  
  11. hexString = strB.ToString ();  
  12. }  
  13. return hexString;  
  14. }  

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. int byteLength = newString.Length / 2;  
  22. byte[] bytes = new byte[byteLength];  
  23. string hex;  
  24. int j = 0;  
  25. for (int i=0; i
  26. {  
  27. hex = new String(new Char[] {newString[j], newString[j+1]});  
  28. bytes[i] = HexToByte(hex);  
  29. j = j+2;  
  30. }  
  31. return bytes;  
  32. }  

C# string byte數組轉換的問題就向你介紹到這裡,希望對你了解和學習C# string byte數組轉換有所幫助。