【问题标题】:How do you convert a byte array to a hexadecimal string, and vice versa?如何将字节数组转换为十六进制字符串,反之亦然?
【发布时间】:2010-09-23 14:15:49
【问题描述】:

如何将字节数组转换为十六进制字符串,反之亦然?

【问题讨论】:

  • 下面接受的答案似乎在字符串到字节的转换中分配了大量的字符串。我想知道这对性能有何影响

标签: c# arrays hex


【解决方案1】:

两个混搭,将两个半字节操作合二为一。

可能相当有效的版本:

public static string ByteArrayToString2(byte[] ba)
{
    char[] c = new char[ba.Length * 2];
    for( int i = 0; i < ba.Length * 2; ++i)
    {
        byte b = (byte)((ba[i>>1] >> 4*((i&1)^1)) & 0xF);
        c[i] = (char)(55 + b + (((b-10)>>31)&-7));
    }
    return new string( c );
}

decadent linq-with-bit-hacking 版本:

public static string ByteArrayToString(byte[] ba)
{
    return string.Concat( ba.SelectMany( b => new int[] { b >> 4, b & 0xF }).Select( b => (char)(55 + b + (((b-10)>>31)&-7))) );
}

反过来:

public static byte[] HexStringToByteArray( string s )
{
    byte[] ab = new byte[s.Length>>1];
    for( int i = 0; i < s.Length; i++ )
    {
        int b = s[i];
        b = (b - '0') + ((('9' - b)>>31)&-7);
        ab[i>>1] |= (byte)(b << 4*((i&1)^1));
    }
    return ab;
}

【讨论】:

  • HexStringToByteArray("09") 返回 0x02,这是错误的
【解决方案2】:

另一种方法是使用stackalloc来降低GC内存压力:

static string ByteToHexBitFiddle(byte[] bytes)
{
        var c = stackalloc char[bytes.Length * 2 + 1];
        int b; 
        for (int i = 0; i < bytes.Length; ++i)
        {
            b = bytes[i] >> 4;
            c[i * 2] = (char)(55 + b + (((b - 10) >> 31) & -7));
            b = bytes[i] & 0xF;
            c[i * 2 + 1] = (char)(55 + b + (((b - 10) >> 31) & -7));
        }
        c[bytes.Length * 2 ] = '\0';
        return new string(c);
}

【讨论】:

    【解决方案3】:

    这是我的尝试。我创建了一对扩展类来扩展字符串和字节。在大文件测试中,性能与 Byte Manipulation 2 相当。

    下面的 ToHexString 代码是查找和移位算法的优化实现。它与 Behrooz 的几乎相同,但结果证明使用 foreach 进行迭代并且计数器比显式索引 for 更快。

    它在我的机器上排在 Byte Manipulation 2 之后的第二位,并且是非常易读的代码。以下测试结果也很有趣:

    ToHexStringCharArrayWithCharArrayLookup:平均 41,589.69 个刻度(超过 1000 次运行),1.5X ToHexStringCharArrayWithStringLookup:50,764.06 个平均刻度(超过 1000 次运行),1.2X ToHexStringStringBuilderWithCharArrayLookup:62,812.87 个平均滴答数(超过 1000 次运行),1.0X

    根据上述结果,似乎可以得出以下结论:

    1. 索引到字符串以执行查找的惩罚与 a char 数组在大文件测试中很重要。
    2. 使用已知容量的 StringBuilder 与 char 的惩罚 用于创建字符串的已知大小的数组更为重要。

    代码如下:

    using System;
    
    namespace ConversionExtensions
    {
        public static class ByteArrayExtensions
        {
            private readonly static char[] digits = new char[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
    
            public static string ToHexString(this byte[] bytes)
            {
                char[] hex = new char[bytes.Length * 2];
                int index = 0;
    
                foreach (byte b in bytes)
                {
                    hex[index++] = digits[b >> 4];
                    hex[index++] = digits[b & 0x0F];
                }
    
                return new string(hex);
            }
        }
    }
    
    
    using System;
    using System.IO;
    
    namespace ConversionExtensions
    {
        public static class StringExtensions
        {
            public static byte[] ToBytes(this string hexString)
            {
                if (!string.IsNullOrEmpty(hexString) && hexString.Length % 2 != 0)
                {
                    throw new FormatException("Hexadecimal string must not be empty and must contain an even number of digits to be valid.");
                }
    
                hexString = hexString.ToUpperInvariant();
                byte[] data = new byte[hexString.Length / 2];
    
                for (int index = 0; index < hexString.Length; index += 2)
                {
                    int highDigitValue = hexString[index] <= '9' ? hexString[index] - '0' : hexString[index] - 'A' + 10;
                    int lowDigitValue = hexString[index + 1] <= '9' ? hexString[index + 1] - '0' : hexString[index + 1] - 'A' + 10;
    
                    if (highDigitValue < 0 || lowDigitValue < 0 || highDigitValue > 15 || lowDigitValue > 15)
                    {
                        throw new FormatException("An invalid digit was encountered. Valid hexadecimal digits are 0-9 and A-F.");
                    }
                    else
                    {
                        byte value = (byte)((highDigitValue << 4) | (lowDigitValue & 0x0F));
                        data[index / 2] = value;
                    }
                }
    
                return data;
            }
        }
    }
    

    以下是我将代码放入机器上@patridge 的测试项目时得到的测试结果。我还添加了一个从十六进制转换为字节数组的测试。运行我的代码的测试运行是 ByteArrayToHexViaOptimizedLookupAndShift 和 HexToByteArrayViaByteManipulation。 HexToByteArrayViaConvertToByte 取自 XXXX。 HexToByteArrayViaSoapHexBinary 是来自@Mykroft 的答案。

    英特尔奔腾 III 至强处理器

        Cores: 4 <br/>
        Current Clock Speed: 1576 <br/>
        Max Clock Speed: 3092 <br/>
    

    将字节数组转换为十六进制字符串表示


    ByteArrayToHexViaByteManipulation2:39,366.64 个平均滴答数(超过 1000 次运行),22.4X

    ByteArrayToHexViaOptimizedLookupAndShift:平均 41,588.64 个刻度 (超过 1000 次运行),21.2X

    ByteArrayToHexViaLookup:55,509.56 个平均刻度(超过 1000 次运行),15.9X

    ByteArrayToHexViaByteManipulation:65,349.12 平均滴答数(超过 1000 次运行),13.5X

    ByteArrayToHexViaLookupAndShift:平均 86,926.87 个刻度(超过 1000 运行),10.2X

    ByteArrayToHexStringViaBitConverter:平均 139,353.73 滴答声(超过 1000 次运行),6.3X

    ByteArrayToHexViaSoapHexBinary:314,598.77 个平均刻度(超过 1000 次运行),2.8X

    ByteArrayToHexStringViaStringBuilderForEachByteToString: 344,264.63 平均滴答声(超过 1000 次运行),2.6X

    ByteArrayToHexStringViaStringBuilderAggregateByteToString: 382,​​623.44 平均滴答数(超过 1000 次运行),2.3X

    ByteArrayToHexStringViaStringBuilderForEachAppendFormat: 818,111.95 平均滴答数(超过 1000 次运行),1.1X

    ByteArrayToHexStringViaStringConcatArrayConvertAll:平均 839,244.84 滴答声(超过 1000 次运行),1.1X

    ByteArrayToHexStringViaStringBuilderAggregateAppendFormat: 867,303.98 平均滴答声(超过 1000 次运行),1.0X

    ByteArrayToHexStringViaStringJoinArrayConvertAll:平均 882,710.28 滴答声(超过 1000 次运行),1.0X


    【讨论】:

      【解决方案4】:

      另一个快速功能...

      private static readonly byte[] HexNibble = new byte[] {
          0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7,
          0x8, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
          0x0, 0xA, 0xB, 0xC, 0xD, 0xE, 0xF, 0x0,
          0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
          0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
          0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
          0x0, 0xA, 0xB, 0xC, 0xD, 0xE, 0xF
      };
      
      public static byte[] HexStringToByteArray( string str )
      {
          int byteCount = str.Length >> 1;
          byte[] result = new byte[byteCount + (str.Length & 1)];
          for( int i = 0; i < byteCount; i++ )
              result[i] = (byte) (HexNibble[str[i << 1] - 48] << 4 | HexNibble[str[(i << 1) + 1] - 48]);
          if( (str.Length & 1) != 0 )
              result[byteCount] = (byte) HexNibble[str[str.Length - 1] - 48];
          return result;
      }
      

      【讨论】:

        【解决方案5】:

        支持最短路径和.net核心:

            public static string BytesToString(byte[] ba) =>
                ba.Aggregate(new StringBuilder(32), (sb, b) => sb.Append(b.ToString("X2"))).ToString();
        

        【讨论】:

        • 这很好,如果ba 是 16 字节或更少。但是,它应该是new StringBuilder(ba.Length * 2),因此它可以有效地处理任何长度的字节数组。
        【解决方案6】:

        有一个尚未提及的简单单行解决方案将十六进制字符串转换为字节数组(我们不关心这里的否定解释,因为它无关紧要):

        BigInteger.Parse(str, System.Globalization.NumberStyles.HexNumber).ToByteArray().Reverse().ToArray();
        

        【讨论】:

        • 这不会保留 0 的前导字节。例如,"000080" 的字符串导致 { 0x80 } 的单字节数组,而不是 { 0x00, 0x00, 0x80 } 的预期三字节数组
        • 是的,我想在 Enumerable.Repeat(0, (len(str) / 2 - len(bigIntBytes)).Concat(bigIntBytes).ToArray() 中需要一些类似的东西那案子
        • 您可以将数组设为大端模式,而不是反转数组:.ToByteArray(isBigEndian: true)
        • 谢谢西蒙,我不知道或者至少忘记了这个方便的参数!
        【解决方案7】:

        测试:十六进制字符串到字节数组

        我注意到大多数测试都是在将字节数组转换为十六进制字符串的函数上执行的。 因此,在这篇文章中,我将关注另一面:将十六进制字符串转换为字节数组的函数。 如果您只对结果感兴趣,可以跳到摘要部分。 测试代码文件在文末提供。

        标签

        我想从接受的答案(由 Tomalak)StringToByteArrayV1 中命名该函数,或者将它的快捷方式命名为 V1。其余函数将以相同方式命名:V2、V3、V4、...等

        参与函数索引

        正确性测试

        我通过传递 1 个字节的所有 256 个可能值来测试正确性,然后检查输出以查看是否正确。 结果:

        • V18 存在以“00”开头的字符串的问题(请参阅 Roger Stewart 对此的评论)。除了它通过了所有测试。
        • 如果十六进制字符串字母为大写:所有函数成功通过
        • 如果十六进制字符串字母为小写,则以下函数失败:V5_1、V5_2、v7、V8、V15、V19

        注意:V5_3 解决了这个问题(V5_1 和 V5_2)

        性能测试

        我已经使用 Stopwatch 类进行了性能测试。

        • 长字符串的性能
        input length: 10,000,000 bytes
        runs: 100
        average elapsed time per run:
        V1 = 136.4ms
        V2 = 104.5ms
        V3 = 22.0ms
        V4 = 9.9ms
        V5_1 = 10.2ms
        V5_2 = 9.0ms
        V5_3 = 9.3ms
        V6 = 18.3ms
        V7 = 9.8ms
        V8 = 8.8ms
        V9 = 10.2ms
        V10 = 19.0ms
        V11 = 12.2ms
        V12 = 27.4ms
        V13 = 21.8ms
        V14 = 12.0ms
        V15 = 14.9ms
        V16 = 15.3ms
        V17 = 9.5ms
        V18 got excluded from this test, because it was very slow when using very long string
        V19 = 222.8ms
        V20 = 66.0ms
        V21 = 15.4ms
        
        V1 average ticks per run: 1363529.4
        V2 is more fast than V1 by: 1.3 times (ticks ratio)
        V3 is more fast than V1 by: 6.2 times (ticks ratio)
        V4 is more fast than V1 by: 13.8 times (ticks ratio)
        V5_1 is more fast than V1 by: 13.3 times (ticks ratio)
        V5_2 is more fast than V1 by: 15.2 times (ticks ratio)
        V5_3 is more fast than V1 by: 14.8 times (ticks ratio)
        V6 is more fast than V1 by: 7.4 times (ticks ratio)
        V7 is more fast than V1 by: 13.9 times (ticks ratio)
        V8 is more fast than V1 by: 15.4 times (ticks ratio)
        V9 is more fast than V1 by: 13.4 times (ticks ratio)
        V10 is more fast than V1 by: 7.2 times (ticks ratio)
        V11 is more fast than V1 by: 11.1 times (ticks ratio)
        V12 is more fast than V1 by: 5.0 times (ticks ratio)
        V13 is more fast than V1 by: 6.3 times (ticks ratio)
        V14 is more fast than V1 by: 11.4 times (ticks ratio)
        V15 is more fast than V1 by: 9.2 times (ticks ratio)
        V16 is more fast than V1 by: 8.9 times (ticks ratio)
        V17 is more fast than V1 by: 14.4 times (ticks ratio)
        V19 is more SLOW than V1 by: 1.6 times (ticks ratio)
        V20 is more fast than V1 by: 2.1 times (ticks ratio)
        V21 is more fast than V1 by: 8.9 times (ticks ratio)
        
        • V18 的长弦性能
        V18 took long time at the previous test, 
        so let's decrease length for it:  
        input length: 1,000,000 bytes
        runs: 100
        average elapsed time per run: V1 = 14.1ms , V18 = 146.7ms
        V1 average ticks per run: 140630.3
        V18 is more SLOW than V1 by: 10.4 times (ticks ratio)
        
        • 短字符串的性能
        input length: 100 byte
        runs: 1,000,000
        V1 average ticks per run: 14.6
        V2 is more fast than V1 by: 1.4 times (ticks ratio)
        V3 is more fast than V1 by: 5.9 times (ticks ratio)
        V4 is more fast than V1 by: 15.7 times (ticks ratio)
        V5_1 is more fast than V1 by: 15.1 times (ticks ratio)
        V5_2 is more fast than V1 by: 18.4 times (ticks ratio)
        V5_3 is more fast than V1 by: 16.3 times (ticks ratio)
        V6 is more fast than V1 by: 5.3 times (ticks ratio)
        V7 is more fast than V1 by: 15.7 times (ticks ratio)
        V8 is more fast than V1 by: 18.0 times (ticks ratio)
        V9 is more fast than V1 by: 15.5 times (ticks ratio)
        V10 is more fast than V1 by: 7.8 times (ticks ratio)
        V11 is more fast than V1 by: 12.4 times (ticks ratio)
        V12 is more fast than V1 by: 5.3 times (ticks ratio)
        V13 is more fast than V1 by: 5.2 times (ticks ratio)
        V14 is more fast than V1 by: 13.4 times (ticks ratio)
        V15 is more fast than V1 by: 9.9 times (ticks ratio)
        V16 is more fast than V1 by: 9.2 times (ticks ratio)
        V17 is more fast than V1 by: 16.2 times (ticks ratio)
        V18 is more fast than V1 by: 1.1 times (ticks ratio)
        V19 is more SLOW than V1 by: 1.6 times (ticks ratio)
        V20 is more fast than V1 by: 1.9 times (ticks ratio)
        V21 is more fast than V1 by: 11.4 times (ticks ratio)
        

        测试代码

        在使用以下代码中的任何内容之前,最好先阅读本文下方的免责声明部分 https://github.com/Ghosticollis/performance-tests/blob/main/MTestPerformance.cs

        总结

        我推荐使用以下函数之一,因为它性能好,并且支持大小写:

        这是V5_3的最终形状:

        static byte[] HexStringToByteArrayV5_3(string hexString) {
            int hexStringLength = hexString.Length;
            byte[] b = new byte[hexStringLength / 2];
            for (int i = 0; i < hexStringLength; i += 2) {
                int topChar = hexString[i];
                topChar = (topChar > 0x40 ? (topChar & ~0x20) - 0x37 : topChar - 0x30) << 4;
                int bottomChar = hexString[i + 1];
                bottomChar = bottomChar > 0x40 ? (bottomChar & ~0x20) - 0x37 : bottomChar - 0x30;
                b[i / 2] = (byte)(topChar + bottomChar);
            }
            return b;
        }
        

        免责声明

        警告:我没有适当的测试知识。这些原始测试的主要目的是快速概述所有已发布功能的优点。 如果您需要准确的结果,请使用适当的测试工具。

        最后,我想说我是新来的 stackoverflow,如果我的帖子缺少,我很抱歉。 cmets 来增强这篇文章将不胜感激。

        【讨论】:

        • 哇,辛苦了!
        【解决方案8】:

        如果性能很重要,这里有一个优化的解决方案:

            static readonly char[] _hexDigits = "0123456789abcdef".ToCharArray();
            public static string ToHexString(this byte[] bytes)
            {
                char[] digits = new char[bytes.Length * 2];
                for (int i = 0; i < bytes.Length; i++)
                {
                    int d1, d2;
                    d1 = Math.DivRem(bytes[i], 16, out d2);
                    digits[2 * i] = _hexDigits[d1];
                    digits[2 * i + 1] = _hexDigits[d2];
                }
                return new string(digits);
            }
        

        它比 BitConverter.ToString 快约 2.5 倍,比 BitConverter.ToString 快​​约 7 倍 + 删除了“-”字符。

        【讨论】:

        • 如果性能很重要,您不会使用Math.DivRem 将一个字节分成两个半字节。
        • @dolmen,您是否在使用和不使用Math.DivRem 的情况下进行了性能测试?我严重怀疑它对性能有任何影响:Math.DivRem 的实现正是您手动执行的操作,并且该方法非常简单,因此它总是由 JIT 内联(实际上它的目的是内联,正如应用于它的 TargetedPatchingOptOut 属性所建议的那样)
        • @ThomasLevesque DivRem 的实现执行模运算和除法。为什么您认为这些操作正是您手动执行的操作?对我来说,自然实现是github.com/patridge/PerformanceStubs/blob/master/…,它执行位移和逻辑与。即使在现代处理器上,这些运算也比模数和除法便宜得多。
        【解决方案9】:

        这适用于从字符串到字节数组...

        public static byte[] StrToByteArray(string str)
            {
                Dictionary<string, byte> hexindex = new Dictionary<string, byte>();
                for (byte i = 0; i < 255; i++)
                    hexindex.Add(i.ToString("X2"), i);
        
                List<byte> hexres = new List<byte>();
                for (int i = 0; i < str.Length; i += 2)
                    hexres.Add(hexindex[str.Substring(i, 2)]);
        
                return hexres.ToArray();
            }
        

        【讨论】:

          【解决方案10】:

          我猜它的速度值得多出 16 个字节。

              static char[] hexes = new char[]{'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
              public static string ToHexadecimal (this byte[] Bytes)
              {
                  char[] Result = new char[Bytes.Length << 1];
                  int Offset = 0;
                  for (int i = 0; i != Bytes.Length; i++) {
                      Result[Offset++] = hexes[Bytes[i] >> 4];
                      Result[Offset++] = hexes[Bytes[i] & 0x0F];
                  }
                  return new string(Result);
              }
          

          【讨论】:

          • 它实际上比其他基于表查找的方法慢(至少在我的测试中)。使用 != 而不是 &lt; 会破坏一些 JIT 优化模式,而且 Offset 的额外计数器似乎也很昂贵。
          【解决方案11】:

          下面通过允许原生小写选项扩展出色的答案here,并且还处理空输入或空输入并使其成为扩展方法。

              /// <summary>
              /// Converts the byte array to a hex string very fast. Excellent job
              /// with code lightly adapted from 'community wiki' here: https://stackoverflow.com/a/14333437/264031
              /// (the function was originally named: ByteToHexBitFiddle). Now allows a native lowerCase option
              /// to be input and allows null or empty inputs (null returns null, empty returns empty).
              /// </summary>
              public static string ToHexString(this byte[] bytes, bool lowerCase = false)
              {
                  if (bytes == null)
                      return null;
                  else if (bytes.Length == 0)
                      return "";
          
                  char[] c = new char[bytes.Length * 2];
          
                  int b;
                  int xAddToAlpha = lowerCase ? 87 : 55;
                  int xAddToDigit = lowerCase ? -39 : -7;
          
                  for (int i = 0; i < bytes.Length; i++) {
          
                      b = bytes[i] >> 4;
                      c[i * 2] = (char)(xAddToAlpha + b + (((b - 10) >> 31) & xAddToDigit));
          
                      b = bytes[i] & 0xF;
                      c[i * 2 + 1] = (char)(xAddToAlpha + b + (((b - 10) >> 31) & xAddToDigit));
                  }
          
                  string val = new string(c);
                  return val;
              }
          
              public static string ToHexString(this IEnumerable<byte> bytes, bool lowerCase = false)
              {
                  if (bytes == null)
                      return null;
                  byte[] arr = bytes.ToArray();
                  return arr.ToHexString(lowerCase);
              }
          

          【讨论】:

            【解决方案12】:
            static string ByteArrayToHexViaLookupPerByte2(byte[] bytes)
            {                
                    var result3 = new uint[bytes.Length];
                    for (int i = 0; i < bytes.Length; i++)
                            result3[i] = _Lookup32[bytes[i]];
                    var handle = GCHandle.Alloc(result3, GCHandleType.Pinned);
                    try
                    {
                            var result = Marshal.PtrToStringUni(handle.AddrOfPinnedObject(), bytes.Length * 2);
                            return result;
                    }
                    finally
                    {
                            handle.Free();
                    }
            }
            

            在我的测试中这个函数总是在不安全实现之后的第二个入口。

            不幸的是,测试台不是那么可靠......如果你多次运行它,列表就会被洗牌太多,谁知道在不安全之后哪一个真的是最快的!它没有考虑预热、jit 编译时间和 GC 性能命中。我想重写它以获得更多信息,但我真的没有时间。

            【讨论】:

              【解决方案13】:

              还有XmlWriter.WriteBinHex(参见MSDN page)。如果您需要将十六进制字符串放入 XML 流中,这将非常有用。

              这是一个独立的方法来看看它是如何工作的:

                  public static string ToBinHex(byte[] bytes)
                  {
                      XmlWriterSettings xmlWriterSettings = new XmlWriterSettings();
                      xmlWriterSettings.ConformanceLevel = ConformanceLevel.Fragment;
                      xmlWriterSettings.CheckCharacters = false;
                      xmlWriterSettings.Encoding = ASCIIEncoding.ASCII;
                      MemoryStream memoryStream = new MemoryStream();
                      using (XmlWriter xmlWriter = XmlWriter.Create(memoryStream, xmlWriterSettings))
                      {
                          xmlWriter.WriteBinHex(bytes, 0, bytes.Length);
                      }
                      return Encoding.ASCII.GetString(memoryStream.ToArray());
                  }
              

              【讨论】:

                【解决方案14】:

                我想出了一个不同的code that is tolerant to extra characters (whitespace, dash...)。它的灵感主要来自这里一些可以接受的快速答案。它允许解析以下“文件”

                00-aa-84-fb
                12 32 FF CD
                12 00
                12_32_FF_CD
                1200d5e68a
                
                /// <summary>Reads a hex string into bytes</summary>
                public static IEnumerable<byte> HexadecimalStringToBytes(string hex) {
                    if (hex == null)
                        throw new ArgumentNullException(nameof(hex));
                
                    char c, c1 = default(char);
                    bool hasc1 = false;
                    unchecked   {
                        for (int i = 0; i < hex.Length; i++) {
                            c = hex[i];
                            bool isValid = 'A' <= c && c <= 'f' || 'a' <= c && c <= 'f' || '0' <= c && c <= '9';
                            if (!hasc1) {
                                if (isValid) {
                                    hasc1 = true;
                                }
                            } else {
                                hasc1 = false;
                                if (isValid) {
                                    yield return (byte)((GetHexVal(c1) << 4) + GetHexVal(c));
                                }
                            }
                
                            c1 = c;
                        } 
                    }
                }
                
                /// <summary>Reads a hex string into a byte array</summary>
                public static byte[] HexadecimalStringToByteArray(string hex)
                {
                    if (hex == null)
                        throw new ArgumentNullException(nameof(hex));
                
                    var bytes = new List<byte>(hex.Length / 2);
                    foreach (var item in HexadecimalStringToBytes(hex)) {
                        bytes.Add(item);
                    }
                
                    return bytes.ToArray();
                }
                
                private static byte GetHexVal(char val)
                {
                    return (byte)(val - (val < 0x3A ? 0x30 : val < 0x5B ? 0x37 : 0x57));
                    //                   ^^^^^^^^^^^^^^^^^   ^^^^^^^^^^^^^^^^^   ^^^^
                    //                       digits 0-9       upper char A-Z     a-z
                }
                

                复制时请参考full code。包括单元测试。

                有些人可能会说它对额外字符的容忍度太高了。所以不要依赖此代码来执行验证(或更改它)。

                【讨论】:

                  【解决方案15】:
                      // a safe version of the lookup solution:       
                  
                      public static string ByteArrayToHexViaLookup32Safe(byte[] bytes, bool withZeroX)
                      {
                          if (bytes.Length == 0)
                          {
                              return withZeroX ? "0x" : "";
                          }
                  
                          int length = bytes.Length * 2 + (withZeroX ? 2 : 0);
                          StateSmall stateToPass = new StateSmall(bytes, withZeroX);
                          return string.Create(length, stateToPass, (chars, state) =>
                          {
                              int offset0x = 0;
                              if (state.WithZeroX)
                              {
                                  chars[0] = '0';
                                  chars[1] = 'x';
                                  offset0x += 2;
                              }
                  
                              Span<uint> charsAsInts = MemoryMarshal.Cast<char, uint>(chars.Slice(offset0x));
                              int targetLength = state.Bytes.Length;
                              for (int i = 0; i < targetLength; i += 1)
                              {
                                  uint val = Lookup32[state.Bytes[i]];
                                  charsAsInts[i] = val;
                              }
                          });
                      }
                  
                      private struct StateSmall
                      {
                          public StateSmall(byte[] bytes, bool withZeroX)
                          {
                              Bytes = bytes;
                              WithZeroX = withZeroX;
                          }
                  
                          public byte[] Bytes;
                          public bool WithZeroX;
                      }
                  

                  【讨论】:

                    【解决方案16】:

                    将几个答案合并到一个类中,方便我以后复制和粘贴:

                    /// <summary>
                    /// Extension methods to quickly convert byte array to string and back.
                    /// </summary>
                    public static class HexConverter
                    {
                        /// <summary>
                        /// Map values to hex digits
                        /// </summary>
                        private static readonly char[] HexDigits =
                            {
                                '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
                            };
                    
                        /// <summary>
                        /// Map 56 characters between ['0', 'F'] to their hex equivalents, and set invalid characters
                        /// such that they will overflow byte to fail conversion.
                        /// </summary>
                        private static readonly ushort[] HexValues =
                            {
                                0x0000, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0009, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100,
                                0x000A, 0x000B, 0x000C, 0x000D, 0x000E, 0x000F, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100,
                                0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x0100, 0x000A, 0x000B,
                                0x000C, 0x000D, 0x000E, 0x000F
                            };
                    
                        /// <summary>
                        /// Empty byte array 
                        /// </summary>
                        private static readonly byte[] Empty = new byte[0];
                    
                        /// <summary>
                        /// Convert a byte array to a hexadecimal string.
                        /// </summary>
                        /// <param name="bytes">
                        /// The input byte array.
                        /// </param>
                        /// <returns>
                        /// A string of hexadecimal digits.
                        /// </returns>
                        public static string ToHexString(this byte[] bytes)
                        {
                            var c = new char[bytes.Length * 2];
                            for (int i = 0, j = 0; i < bytes.Length; i++)
                            {
                                c[j++] = HexDigits[bytes[i] >> 4];
                                c[j++] = HexDigits[bytes[i] & 0x0F];
                            }
                    
                            return new string(c);
                        }
                    
                        /// <summary>
                        /// Parse a string of hexadecimal digits into a byte array.
                        /// </summary>
                        /// <param name="hexadecimalString">
                        /// The hexadecimal string.
                        /// </param>
                        /// <returns>
                        /// The parsed <see cref="byte[]"/> array.
                        /// </returns>
                        /// <exception cref="ArgumentException">
                        /// The input string either contained invalid characters, or was of an odd length.
                        /// </exception>
                        public static byte[] ToByteArray(string hexadecimalString)
                        {
                            if (!TryParse(hexadecimalString, out var value))
                            {
                                throw new ArgumentException("Invalid hexadecimal string", nameof(hexadecimalString));
                            }
                    
                            return value;
                        }
                    
                        /// <summary>
                        /// Parse a hexadecimal string to bytes
                        /// </summary>
                        /// <param name="hexadecimalString">
                        /// The hexadecimal string, which must be an even number of characters.
                        /// </param>
                        /// <param name="value">
                        /// The parsed value if successful.
                        /// </param>
                        /// <returns>
                        /// True if successful.
                        /// </returns>
                        public static bool TryParse(string hexadecimalString, out byte[] value)
                        {
                            if (hexadecimalString.Length == 0)
                            {
                                value = Empty;
                                return true;
                            }
                    
                            if (hexadecimalString.Length % 2 != 0)
                            {
                                value = Empty;
                                return false;
                            }
                    
                            try
                            {
                    
                                value = new byte[hexadecimalString.Length / 2];
                                for (int i = 0, j = 0; j < hexadecimalString.Length; i++)
                                {
                                    value[i] = (byte)((HexValues[hexadecimalString[j++] - '0'] << 4)
                                                      | HexValues[hexadecimalString[j++] - '0']);
                                }
                    
                                return true;
                            }
                            catch (OverflowException)
                            {
                                value = Empty;
                                return false;
                            }
                        }
                    }
                    

                    【讨论】:

                      【解决方案17】:

                      如果您想获得 wcoenen 报告的“4 倍速度提升”,那么如果不明显:将 hex.Substring(i, 2) 替换为 hex[i]+hex[i+1]

                      您还可以更进一步,通过在两个地方使用 i++ 来摆脱 i+=2

                      【讨论】:

                        【解决方案18】:

                        带有扩展支持的基本解决方案

                        public static class Utils
                        {
                            public static byte[] ToBin(this string hex)
                            {
                                int NumberChars = hex.Length;
                                byte[] bytes = new byte[NumberChars / 2];
                                for (int i = 0; i < NumberChars; i += 2)
                                    bytes[i / 2] = Convert.ToByte(hex.Substring(i, 2), 16);
                                return bytes;
                            }
                            public static string ToHex(this byte[] ba)
                            {
                                return  BitConverter.ToString(ba).Replace("-", "");
                            }
                        }
                        

                        并像下面这样使用这个类

                            byte[] arr1 = new byte[] { 1, 2, 3 };
                            string hex1 = arr1.ToHex();
                            byte[] arr2 = hex1.ToBin();
                        

                        【讨论】:

                          【解决方案19】:

                          在 Java 8 中,我们可以使用 Byte.toUnsignedInt

                          public static String convertBytesToHex(byte[] bytes) {
                              StringBuilder result = new StringBuilder();
                              for (byte byt : bytes) {
                                  int decimal = Byte.toUnsignedInt(byt);
                                  String hex = Integer.toHexString(decimal);
                                  result.append(hex);
                              }
                              return result.toString();
                          }
                          

                          【讨论】:

                          • 不正确,toHexString 可能只返回一个字符而不是两个。
                          【解决方案20】:

                          我怀疑它的速度会让大多数其他测试都望而却步......

                          Public Function BufToHex(ByVal buf() As Byte) As String
                              Dim sB As New System.Text.StringBuilder
                              For i As Integer = 0 To buf.Length - 1
                                  sB.Append(buf(i).ToString("x2"))
                              Next i
                              Return sB.ToString
                          End Function
                          

                          【讨论】:

                          • 是什么让你这么想?您为缓冲区中的每个字节创建一个新的字符串对象,并且您不预先设置字符串构建器的大小(这可能导致缓冲区在大型数组上被多次调整大小)。
                          • 纯英文字节转换:)
                          猜你喜欢
                          • 1970-01-01
                          • 2018-09-22
                          • 2011-03-23
                          • 1970-01-01
                          • 1970-01-01
                          • 1970-01-01
                          • 1970-01-01
                          • 1970-01-01
                          相关资源
                          最近更新 更多