如何将字节数组转换为十六进制字符串,反之亦然?
最佳答案
任何一个:
public static string ByteArrayToString(byte[] ba)
{
StringBuilder hex = new StringBuilder(ba.Length * 2);
foreach (byte b in ba)
hex.AppendFormat("{0:x2}", b);
return hex.ToString();
}
要么:
public static string ByteArrayToString(byte[] ba)
{
return BitConverter.ToString(ba).Replace("-","");
}
这样做还有更多变体,例如 here 。
反向转换将是这样的:
public static byte[] StringToByteArray(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;
}
将
Substring
与 Convert.ToByte
结合使用是最佳选择。有关更多信息,请参阅 this answer。如果您需要更好的性能,则必须先避免 Convert.ToByte
,然后才能删除 SubString
。关于c# - 如何将字节数组转换为十六进制字符串,反之亦然?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/311165/