バイト配列を 16 進文字列に、またはその逆に変換するにはどうすればよいでしょうか?
ベストアンサー1
使用できますConvert.ToHexString
.NET 5 以降では、
逆の操作を行うメソッドもあります。Convert.FromHexString
。
古いバージョンの .NET の場合は、次のいずれかを使用できます。
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("-","");
}
他にもやり方はいろいろある。例えばここ。
逆変換は次のようになります。
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
。この答え詳細については、 を参照してください。 パフォーマンスを向上させる必要がある場合は、Convert.ToByte
を削除する前にを避ける必要がありますSubString
。