C# string byte数组转换解析
C# string byte数组转换实现的过程是什么呢?C# string byte数组间的转换需要注意什
字符串数组怎么转成byte么呢?C# string byte数组间转换所涉及的方法是什么呢?让我们来看看具体的内容:C# string byte数组转换之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})
1byte[] byteArray = System.Text.Encoding.ASCII.GetBytes ( str );
ASCII byte[] 转成string:(byte[] = new byte[]{ 0x30, 0x31} 转成"01")
2string str = System.Text.Encoding.ASCII.GetString ( byteArray );
有时候还有这样一些需求:
byte[] 转成原16进制格式的string,例如0xae00cf, 转换成"ae00cf";new byte[]{ 0x30,
0x31}转成"3031":
3public static string ToHexString ( byte[] bytes ) // 0xae00cf => "AE00CF "
4{
5string hexString = string.Empty;
6if ( bytes != null )
7{
8StringBuilder strB = new StringBuilder ();
9
10for ( int i = 0; i < bytes.Length; i++ )
11{
12strB.Append ( bytes[i].ToString ( "X2" ) );
13}
14hexString = strB.ToString ();
15}
16return hexString;
17}
C# string byte数组转换之16进制格式的string 转成byte[]
例如, "ae00cf"转换成0xae00cf,长度缩减一半;"3031" 转成new byte[]{ 0x30, 0x31}: 18public static byte[] GetBytes(string hexString, out int discarded) 19{
20discarded = 0;
21string newString = "";
22char c;
23// remove all none A-F, 0-9, characters
for (int i=0; i< SPAN>
{
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< SPAN>
{
hex = new String(new Char[] {newString[j], newString[j+1]});
bytes[i] = HexToByte(hex);
j = j+2;
}
return bytes;
}
C# string byte数组转换的问题就向你介绍到这里,希望对你了解和学习C# string byte 数组转换有所帮助。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论