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数组转换有所帮助。


本文标签: 转换 数组 查询 格式