簡體   English   中英

將十六進制字符串(字節列表)轉換為字節數組

[英]Convert a hex string (byte list) to a byte array

我想將字符串(“ 00812B1FA4BEA310199D6E00DD010F5402000001807”)轉換為字節數組。 但是我希望字符串的每個數字都是十六進制值。

預期結果:

array[0] = 0x00;

array[1] = 0x81;

array[0] = 0x2B;

array[0] = 0x1F;

etc...

我嘗試了幾種方法。 沒有人能得到預期的結果。 最接近的是:

private static byte[] Convert(string tt)
{
    byte[] bytes2 = new byte[tt.Length];
    int i = 0;
    foreach ( char c in tt)
    {
        bytes2[i++] = (byte)((int)c - 48);
    }
    return bytes2;
}

public static byte[] ConvertHexStringToByteArray(string hexString)
{

    byte[] HexAsBytes = new byte[hexString.Length / 2];
    for (int index = 0; index < HexAsBytes.Length; index++)
    {
        string byteValue = hexString.Substring(index * 2, 2);
        byte[] a =  GetBytes(byteValue);
        HexAsBytes[index] = a[0];
    }
    return HexAsBytes;
}

您可以使用Convert.ToByte將2個十六進制字符轉換為字節。

public static byte[] HexToByteArray(string hexstring)
{
    var bytes = new List<byte>();

    for (int i = 0; i < hexstring.Length/2; i++)
        bytes.Add(Convert.ToByte("" + hexstring[i*2] + hexstring[i*2 + 1], 16));

    return bytes.ToArray();
}

在這里找到解決方案: 如何將字節數組轉換為十六進制字符串,反之亦然? (對於Waleed Eissa代碼,答案由反函數開始)很難找到,因為線程有36個答案。

 public static byte[] HexToBytes(string hexString)
    {
        byte[] b = new byte[hexString.Length / 2];
        char c;
        for (int i = 0; i < hexString.Length / 2; i++)
        {
            c = hexString[i * 2];
            b[i] = (byte)((c < 0x40 ? c - 0x30 : (c < 0x47 ? c - 0x37 : c - 0x57)) << 4);
            c = hexString[i * 2 + 1];
            b[i] += (byte)(c < 0x40 ? c - 0x30 : (c < 0x47 ? c - 0x37 : c - 0x57));
        }

        return b;
    }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM