vote up 1 vote down star
2

How do i convert a byte[] to a string, every time i attempt it i get System.Byte[] instead of the value.

Also How do i get the value in Hex instead of a decimal?

flag

38% accept rate

5 Answers

vote up 13 vote down check

There is a built in method for this:

byte[] data = { 1, 2, 4, 8, 16, 32 };

string hex = BitConverter.ToString(data);

Result: 01-02-04-08-10-20

If you want it without the dashes, just remove them:

string hex = BitConverter.ToString(data).Replace("-", string.Empty);

Result: 010204081020

If you want a more compact representation, you can use Base64:

string base64 = Convert.ToBase64String(data);

Result: AQIECBAg

link|flag
how to convert back from Base64? i.e. the inverse of string base64 = Convert.ToBase64String(data); – ala Jul 28 at 12:18
nevermind, i think i found it Convert.FromBase64String(..) – ala Jul 28 at 12:25
vote up 5 vote down

Well I don't convert bytes to hex often so I have to say I don't know if there is a better way then this, but here is a way to do it.

StringBuilder sb = new StringBuilder();
foreach (byte b in myByteArray)
    sb.Append(b.ToString("X2"));

string hexString = sb.ToString();
link|flag
Looks about right. This really seems like something that should be in the framework, I swear people are always looking for a built in way to do this. Not sure why there isn't something already there. Oh well. – TJB Mar 8 at 5:39
1  
There is a built in way to do this, in the BitConverter class. – Guffa Mar 8 at 6:59
2  
Specify the capacity for the StringBuilder as myByteArray.Length*2 so that it doesn't have to reallocate during the loop. – Guffa Mar 8 at 7:17
vote up 2 vote down

Hex, Linq-fu:

string.Join("",ba.Select(b => b.ToString("X2").ToArray()))
link|flag
Michael, you need a .ToArray() on the Select, otherwise (as presented) you get a {System.Linq.Enumerable.WhereSelectArrayIterator<byte,string>} which String.Join cast to a String[]. – Aussie Craig Mar 8 at 6:17
vote up 0 vote down

As others have said it depends on the encoding of the values in the byte array. Despite this you need to be very careful with this sort of thing or you may try to convert bytes that are not handled by the chosen encoding.

Jon Skeet has a good article about encoding and unicode in .NET. Recommended reading.

link|flag
vote up -1 vote down

You have to know the encoding of the string represented in bytes, but you can say System.Text.UTF8Encoding.GetString(bytes) or System.Text.ASCIIEncoding.GetString(bytes). (I'm doing this from memory, so the API may not be exactly correct, but it's very close.)

For the answer to your second question, see this question.

link|flag

Your Answer

Get an OpenID
or

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