HexString与byte[]互转

作者:追风剑情 发布于:2016-6-16 12:55 分类:C#

byte[]转16进制字符串

16进制字符串转byte[]

示例代码

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace PrototypeTest
  6. {
  7. class Program
  8. {
  9. static void Main(string[] args)
  10. {
  11. //测试数据
  12. byte[] bytes = new byte[] {100, 200, 210, 220, 230, 240 };
  13. string hexStr = BytesToHex(bytes);
  14. byte[] bytes1 = HexToBytes(hexStr);
  15.  
  16. Console.WriteLine("测试数据:" + PrintBytes(bytes));
  17. Console.WriteLine("byte[]转16进制:" + BytesToHex(bytes));
  18. Console.WriteLine("16进制转byte[]:" + PrintBytes(bytes1));
  19.  
  20. Console.Read();
  21. }
  22.  
  23. static Dictionary<char, byte> hexDic = new Dictionary<char, byte>();
  24.  
  25. private static void InitHexDic()
  26. {
  27. char[] hexSymbol = new char[] {
  28. '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
  29. 'a', 'b', 'c', 'd', 'e', 'f' };
  30.  
  31. for (byte i = 0; i < 16; i++) {
  32. hexDic.Add(hexSymbol[i], i);
  33. }
  34. }
  35.  
  36. private static byte HexToByte(char hex0, char hex1)
  37. {
  38. byte b0 = hexDic[hex0];
  39. byte b1 = hexDic[hex1];
  40. byte result = (byte)(b0 * 16 + b1);
  41. return result;
  42. }
  43.  
  44. //HexString转byte[]
  45. public static byte[] HexToBytes(string hexStr)
  46. {
  47. if (hexDic.Count <= 0)
  48. InitHexDic();
  49.  
  50. int len = hexStr.Length;
  51. if (len % 2 != 0)
  52. return null;
  53. byte[] bytes = new byte[len / 2];
  54. for (int i = 0, j = 0; i < len; i += 2, j++) {
  55. bytes[j] = HexToByte(hexStr[i], hexStr[i + 1]);
  56. }
  57. return bytes;
  58. }
  59.  
  60. //byte[]转HexString
  61. public static string BytesToHex(byte[] bytes)
  62. {
  63. int len = bytes.Length;
  64. if (len <= 0)
  65. return "";
  66.  
  67. StringBuilder sb = new StringBuilder();
  68. for (int i = 0; i < bytes.Length; i++)
  69. sb.Append(bytes[i].ToString("x2"));
  70.  
  71. return sb.ToString();
  72. }
  73.  
  74. //打印byte[]
  75. public static string PrintBytes(byte[] bytes)
  76. {
  77. int len = bytes.Length;
  78. if (len <= 0)
  79. return "";
  80.  
  81. StringBuilder sb = new StringBuilder();
  82. for (int i = 0; i < len; i++)
  83. {
  84. if (i > 0)
  85. sb.Append(",");
  86. sb.Append(bytes[i].ToString());
  87. }
  88.  
  89. return sb.ToString();
  90. }
  91. }
  92. }

运行测试

1111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号