您的位置:首页 > 编程语言 > C#

c# byte[] 与string转化

2015-08-28 15:01 513 查看
string类型转成byte[]:


byte[] byteArray = System.Text.Encoding.Default.GetBytes ( str );

反过来,byte[]转成string:


string str = System.Text.Encoding.Default.GetString ( byteArray );

其它编码方式的,如System.Text.UTF8Encoding,System.Text.UnicodeEncoding class等;例如:

string类型转成ASCII byte[]:("01" 转成 byte[] = new byte[]{ 0x30, 0x31})


byte[] byteArray = System.Text.Encoding.ASCII.GetBytes ( str );

ASCII byte[] 转成string:(byte[] = new byte[]{ 0x30, 0x31} 转成 "01")


string str = System.Text.Encoding.ASCII.GetString ( byteArray );

有时候还有这样一些需求:

byte[] 转成原16进制格式的string,例如0xae00cf, 转换成 "ae00cf";new byte[]{ 0x30, 0x31}转成"3031":


public static string ToHexString ( byte[] bytes ) // 0xae00cf => "AE00CF "


{


string hexString = string.Empty;


if ( bytes != null )


{


StringBuilder strB = new StringBuilder ();




for ( int i = 0; i < bytes.Length; i++ )


{


strB.Append ( bytes[i].ToString ( "X2" ) );


}


hexString = strB.ToString ();


}


return hexString;


}

反过来,16进制格式的string 转成byte[],例如, "ae00cf"转换成0xae00cf,长度缩减一半;"3031" 转成new byte[]{ 0x30, 0x31}:


public static byte[] GetBytes(string hexString, out int discarded)


{


discarded = 0;


string newString = "";


char c;


// remove all none A-F, 0-9, characters


for (int i=0; i<hexString.Length; i++)


{


c = hexString[i];


if (IsHexDigit(c))


newString += c;


else


discarded++;


}


// if odd number of characters, discard last character


if (newString.Length % 2 != 0)


{


discarded++;


newString = newString.Substring(0, newString.Length-1);


}




int byteLength = newString.Length / 2;


byte[] bytes = new byte[byteLength];


string hex;


int j = 0;


for (int i=0; i<bytes.Length; i++)


{


hex = new String(new Char[] {newString[j], newString[j+1]});


bytes[i] = HexToByte(hex);


j = j+2;


}


return bytes;


}

private static byte HexToByte(string hex)

{

byte tt = byte.Parse(hex, System.Globalization.NumberStyles.HexNumber);

return tt;

}

private static byte HexToByte(string hex)

{

byte tt = byte.Parse(hex, System.Globalization.NumberStyles.HexNumber);

return tt;

}

byte[] bt = Encoding.default.GetBytes(str);

string str=*****************.GetString(bt);

Encoding.default和系统的区域有关..

问答频道每周精彩问答(第二期)

对我有用[0] 丢个板砖[0] 引用 | 举报 | 管理





wyd1520
本拉灯
本版等级:






#2 得分:15回复于: 2014-02-16 17:45:25

byte[] bt = Encoding.Default.GetBytes(str);

string str=Encoding.Default.GetString(bt); 这个是根据你的操作系统设置的字符集

我们多数是用 这样在简繁体的操作系统上都能用。如果是Default有时在繁体的操作系统上会变成乱码

byte[] bt = Encoding.UTF8.GetBytes(str);

string str=Encoding.UTF8.GetString(bt);
问答8月活动 大波C币等着你!!

对我有用[0] 丢个板砖[0] 引用 | 举报 | 管理





BenBenBears
BenBenBears
本版等级:


#3 得分:5回复于: 2014-02-16 18:13:35

Encoding.default是指获取操作系统的当前 ANSI 代码页的编码。
不要用Encoding.Default来做通讯。

不同的机器可能有不同的Encoding.Default,可能是GB2312,也可能是Windows‑1252,等等。

用:

string str64 = Convert.ToBase64String(bytes);

byte[] bytes = Convert.FromBase64String(str64);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: