admin 管理员组文章数量: 887059
2024年1月19日发(作者:查询类小程序模板)
C# string byte数组转换解析
C# string byte数组转换实现的过程是什么呢?C# string byte数组间的转换需要注意什么呢?C# string byte数组间转换所涉及的方法是什么呢?让我们来看看具体的内容:
C# string byte数组转换之string类型转成byte[]:
byte[] byteArray = es ( str );
反过来,byte[]转成string:
string str = ing ( byteArray );
其它编码方式的,如8Encoding,eEncoding class等;例如:
string类型转成ASCII byte[]:("01" 转成 byte[] = new byte[]{ 0x30, 0x31})
byte[] byteArray = es ( str );
ASCII byte[] 转成string:(byte[] = new byte[]{ 0x30, 0x31} 转成 "01")
string str = ing ( byteArray );
有时候还有这样一些需求:
byte[] 转成原16进制格式的string,例如0xae00cf, 转换成 "ae00cf";new byte[]{ 0x30,
0x31}转成"3031":
"
{
string hexString = ;
if ( bytes != null )
{
StringBuilder strB = new StringBuilder ();
public static string ToHexString ( byte[] bytes ) // 0xae00cf => "AE00CF
for ( int i = 0; i < ; i++ )
{
( bytes[i].ToString ( "X2" ) );
}
hexString = ng ();
}
return hexString;
}
C# string byte数组转换之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< SPAN>
{
c = hexString[i];
if (IsHexDigit(c))
newString += c;
else
discarded++;
}
// if odd number of characters, discard last character
if ( % 2 != 0)
{
discarded++;
newString = ing(0, -1);
}
int byteLength = / 2;
byte[] bytes = new byte[byteLength];
string hex;
int j = 0;
{
hex = new String(new Char[] {newString[j], newString[j+1]});
bytes[i] = HexToByte(hex);
j = j+2;
}
return bytes;
}
for (int i=0; i< SPAN>
C# string byte数组转换的问题就向你介绍到这里,希望对你了解和学习C# string byte数组转换有所帮助。
版权声明:本文标题:C# string byte数组转换解析 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1705616771h492568.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论