HexUtils.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CommonUtils.Tool
  7. {
  8. public class HexUtils
  9. {
  10. /// <summary>
  11. /// 字节数组转16进制字符串
  12. /// </summary>
  13. /// <param name="bytes"></param>
  14. /// <param name="start"></param>
  15. /// <param name="count"></param>
  16. /// <returns></returns>
  17. public string ByteToHex(byte[] bytes, int start, int count)
  18. {
  19. StringBuilder result = new StringBuilder();
  20. try
  21. {
  22. if ( bytes != null )
  23. {
  24. for ( int i = start; i < count; i++ )
  25. {
  26. if ( bytes.Length < i )
  27. break;
  28. //两个16进制用空格隔开,方便看数据
  29. if ( i == start )
  30. result.Append(bytes[ i ].ToString("X2"));
  31. else
  32. result.Append(" " + bytes[ i ].ToString("X2"));
  33. }
  34. }
  35. return result.ToString();
  36. }
  37. catch ( Exception )
  38. {
  39. return "";
  40. }
  41. }
  42. /// <summary>
  43. /// 字符串转16进制格式,不够自动前面补零
  44. /// </summary>
  45. /// <param name="hexString"></param>
  46. /// <returns></returns>
  47. public byte[] HexToByte(string hexString)
  48. {
  49. hexString = hexString.Replace(" ", "");//清除空格
  50. if ( ( hexString.Length % 2 ) != 0 )//奇数个
  51. hexString = hexString + " ";
  52. byte[] result = new byte[(hexString.Length) / 2];
  53. for ( int i = 0; i < result.Length; i++ )
  54. {
  55. result[ i ] = Convert.ToByte(hexString.Substring(i * 2, 2).Replace(" ", ""), 16);
  56. }
  57. return result;
  58. }
  59. }
  60. }