vote up 15 vote down star
12

This is probably a common question over the Internet, but I couldn't find an answer that neatly explains how you can convert a byte array to a hexadecimal string, and vice versa.

Any takers?

flag

1  
The accepted answer below appear to allocate a horrible amount of strings in the string to bytes conversion. I'm wondering how this impacts performance – wcoenen Mar 6 at 16:41

7 Answers

vote up 24 vote down check

Either:

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();
}

or:

public static string ByteArrayToString(byte[] ba)
{
  string hex = BitConverter.ToString(ba);
  return hex.Replace("-","");
}

There are even more variants of doing it, for example here.

The reverse conversion would go like this:

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;
}
link|flag
missing a semicolon on hex.AppendFormat("{0:x2}", b) line – ee Dec 23 '08 at 0:37
You're using SubString. Doesn't this loop allocate a horrible amount of string objects? – wcoenen Mar 6 at 16:36
Honestly - until it tears down performance dramatically, I would tend to ignore this and trust the Runtime and the GC to take care of it. – Tomalak Mar 6 at 17:11
FWIW I could get a 4x speed-up on my machine by eliminating sub-string. Can't post the code because I wrote this for my employer. – wcoenen Mar 8 at 18:26
1  
Your StringToByteArray() fails if you have an odd number of hex characters. This is easily fixed by padding odd strings with a "0" at the front. – Carlos Rendon 7 hours ago
vote up 1 vote down

And to steal Tomalak's thunder... EXTENSION METHODS :) [disclaimer: completely untested code, btw .. just thought i'd add a quick post]

public static ByteExtensions
{
    public static string ToHexString(this byte[] value)
    {
        StringBuilder hex = new StringBuilder(ba.Length * 2);
        foreach (byte b in ba)
        {
            hex.AppendFormat("{0:x2}", b)
        }
        return hex.ToString()
    }
}

etc.. use either of his three solutions (with the last one being an extension method on a string)

link|flag
vote up 9 vote down

You can use BitConverter.ToString Method:

byte[ ] bytes = {0,   1,   2,   4,   8,  16,  32,  64, 128, 255 }
Console.WriteLine( BitConverter.ToString( bytes ) );

Output:

00-01-02-04-08-10-20-40-80-FF

More Info: http://msdn.microsoft.com/en-us/library/3a733s97.aspx

link|flag
vote up 9 vote down

If you want more flexibility than BitConverter, but don't want those clonky 90s-style explicit loops, then you can do:

String.Join(String.Empty, Array.ConvertAll(bytes, x => x.ToString("X2"))

link|flag
vote up 3 vote down

Since littering this among a half-dozen comments wouldn't be as easy to scan, I am going to make it an answer. That said, it doesn't really deserve any votes, but it is still pretty useful knowledge pertaining to the question, and it definitely looks better with the code formatted as such.

I ran each of the given "ToString" methods through some crude StopWatch performance testing and there is definitely a clear winner between BitConverter, StringBuilder appending as hex, and Array.ConvertAll. Every time I ran this, BitConverter was the fastest (even with the final string.Replace to remove hyphens).

On a random sentence of n=46, it was a ratio of 1:2:3 for BitConverter:Array.ConvertAll:StringBuilder. On a random text taken from Project Gutenberg of n=128010, it was much more dramatic (1:3:5). All tests were repeated 1000 times and averaged from there.

In case anyone wants to play with my testing code, I have included it; just slap it into a new console app. It isn't pretty (or very easily extended to other tasks, but it still gives a pretty good idea which method is faster.

static void Main(string[] args) {
	FileInfo TestSubjectFile = new System.IO.FileInfo("SomeRandomFile.txt");
	string TestFileContents = null;
	using (FileStream TestSubjectStream = TestSubjectFile.OpenRead()) {
		using (StreamReader TestSubjectReader = new StreamReader(TestSubjectStream)) {
			TestFileContents = TestSubjectReader.ReadToEnd();
		}
	}
	byte[] TestSubject = System.Text.ASCIIEncoding.ASCII.GetBytes(TestFileContents);
	//byte[] TestSubject = System.Text.ASCIIEncoding.ASCII.GetBytes("put any sample string you want to test here and uncomment this line");
	List<long> ElapsedTicksCollection = new List<long>();

	ElapsedTicksCollection = new List<long>();
	for (int i = 1; i <= 1000; i++) {
		Stopwatch Timer = Stopwatch.StartNew();
		ByteArrayToHexStringViaStringBuilder(TestSubject);
		Timer.Stop();
		ElapsedTicksCollection.Add(Timer.ElapsedTicks);
	}
	Console.WriteLine(string.Format("StringBuilderToStringFromBytes: {0}", ElapsedTicksCollection.Average()));

	ElapsedTicksCollection = new List<long>();
	for (int i = 1; i <= 1000; i++) {
		Stopwatch Timer = Stopwatch.StartNew();
		ByteArrayToHexStringViaBitConverter(TestSubject);
		Timer.Stop();
		ElapsedTicksCollection.Add(Timer.ElapsedTicks);
	}
	Console.WriteLine(string.Format("BitConverterToStringFromBytes: {0}", ElapsedTicksCollection.Average()));

	ElapsedTicksCollection = new List<long>();
	for (int i = 1; i <= 1000; i++) {
		Stopwatch Timer = Stopwatch.StartNew();
		ByteArrayToHexStringViaArrayConvertAll(TestSubject);
		Timer.Stop();
		ElapsedTicksCollection.Add(Timer.ElapsedTicks);
	}
	Console.WriteLine(string.Format("ArrayConvertAllToStringFromBytes: {0}", ElapsedTicksCollection.Average()));

	Console.Read();
}
static string ByteArrayToHexStringViaArrayConvertAll(byte[] ba) {
	return string.Join(string.Empty, Array.ConvertAll(ba, x => x.ToString("X2")));
}
static string ByteArrayToHexStringViaBitConverter(byte[] ba) {
	string hex = BitConverter.ToString(ba);
	return hex.Replace("-", "");
}
static string ByteArrayToHexStringViaStringBuilder(byte[] ba) {
	StringBuilder hex = new StringBuilder(ba.Length * 2);
	foreach (byte b in ba)
		hex.AppendFormat("{0:x2}", b);
	return hex.ToString();
}
link|flag
2  
my eyes.............!!!!!!!!!!!!!!!!! – Pure.Krome May 21 at 11:56
vote up 4 vote down

I just encountered the very same problem today and I came across this code:

private static string ByteArrayToHex(byte[] barray)
{
    char[] c = new char[barray.Length * 2];
    byte b;
    for (int i = 0; i < barray.Length; ++i)
    {
        b = ((byte)(barray[i] >> 4));
        c[i * 2] = (char)(b > 9 ? b + 0x37 : b + 0x30);
        b = ((byte)(barray[i] & 0xF));
        c[i * 2 + 1] = (char)(b > 9 ? b + 0x37 : b + 0x30);
    }

    return new string(c);
}

Source: http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/3928b8cb-3703-4672-8ccd-33718148d1e3/ (see the post by PZahra) I modified the code a little to remove the 0x prefix

I did some performance testing to the code and it was almost 8 times faster than using BitConverter.ToString() (the fastest according to patridge's post)

link|flag
not to mention that this uses the least memory. No intermediate strings created whatsoever. – Chochos Oct 16 at 17:36
vote up 0 vote down

And for inserting into an SQL string (if you're not using command parameters):

public static String ByteArrayToSQLHexString(byte[] Source)
{
    return = "0x" + BitConverter.ToString(Source).Replace("-", "");
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.