103

I don't really care about encoding and stuff, as long as I get back the exact same byte array.

So to sum up: How do I convert a byte array into a string, and then that string back into the same byte array I started with?

Newbee
  • 1,379
  • 2
  • 16
  • 36
Svish
  • 152,914
  • 173
  • 462
  • 620
  • 1
    @Mehrdad et al, this is not the same question as ".NET String to byte Array C#". The question here is - how do I convert from a byte array to a string and back, safely. I use the "magical" Latin1 encoding (Encoding.GetEncoding( 28591 )) which seems to respect byte => string => byte nicely. – Liam Oct 18 '13 at 13:12

3 Answers3

200

The absolute safest way to convert bytes to a string and back is to use base64:

string base64 = Convert.ToBase64String(bytes);
byte[] bytes = Convert.FromBase64String(base64);

That way you're guaranteed not to get "invalid" unicode sequences such as the first half of a surrogate pair without the second half. Nothing's going to decide to normalize the data into something strange (it's all ASCII). There's no chance of using code points which aren't registered in Unicode, or anything like that. Oh, and you can cut and paste without much fear, too.

Yes, you end up with 4 characters for every 3 bytes - but that's a small price to pay for the knowledge that your data won't be corrupted.

Jon Skeet
  • 1,421,763
  • 867
  • 9,128
  • 9,194
9

You can just use the Convert class as below.

/// <summary>
/// Converts a string to byte array
/// </summary>
/// <param name="input">The string</param>
/// <returns>The byte array</returns>
public static byte[] ConvertToByteArray(string input)
{
    return input.Select(Convert.ToByte).ToArray();
}

/// <summary>
/// Converts a byte array to a string
/// </summary>
/// <param name="bytes">the byte array</param>
/// <returns>The string</returns>
public static string ConvertToString(byte[] bytes)
{
    return new string(bytes.Select(Convert.ToChar).ToArray());
}

/// <summary>
/// Converts a byte array to a string
/// </summary>
/// <param name="bytes">the byte array</param>
/// <returns>The string</returns>
public static string ConvertToBase64String(byte[] bytes)
{
    return Convert.ToBase64String(bytes);
}
puretppc
  • 3,232
  • 8
  • 38
  • 65
Ricky Gummadi
  • 4,559
  • 2
  • 41
  • 67
3

You can use Convert.ToBase64 documentation http://msdn.microsoft.com/en-us/library/dhx0d524.aspx

Aragorn
  • 843
  • 12
  • 25