国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > C# > 正文

C#中string與byte[]的轉(zhuǎn)換幫助類-.NET教程,C#語(yǔ)言

2024-09-07 17:05:19
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
 
主要實(shí)現(xiàn)了以下的函數(shù) 


代碼中出現(xiàn)的sidle是我的網(wǎng)名。 

/**//* 
* @author wuerping 
* @version 1.0 
* @date 2004/11/30 
* @description: 
*/ 
using system; 
using system.text; 
namespace sidlehelper 

/**//// <summary> 
/// summary description for strhelper. 
/// 命名縮寫: 
/// str: unicode string 
/// arr: unicode array 
/// hex: 二進(jìn)制數(shù)據(jù) 
/// hexbin: 二進(jìn)制數(shù)據(jù)用ascii字符表示 例 字符1的hex是0x31表示為hexbin是 31 
/// asc: ascii 
/// uni: unicode 
/// </summary> 
public sealed class strhelper 

hex與hexbin的轉(zhuǎn)換#region hex與hexbin的轉(zhuǎn)換 
public static void hexbin2hex(byte[] bhexbin, byte[] bhex, int nlen) 

for(int i=0; i<nlen/2; i++) 

if(bhexbin[2*i] <0x41) 

bhex[i] = convert.tobyte(((bhexbin[2*i] - 0x30)<<4) & 0xf0); 

else 

bhex[i] = convert.tobyte(((bhexbin[2*i] - 0x37)<<4) & 0xf0); 


if(bhexbin[2*i+1] <0x41) 

bhex[i] |= convert.tobyte((bhexbin[2*i+1] - 0x30) & 0x0f); 

else 

bhex[i] |= convert.tobyte((bhexbin[2*i+1] - 0x37) & 0x0f); 



public static byte[] hexbin2hex(byte[] bhexbin, int nlen) 

if(nlen%2 !=0) 
return null; 
byte[] bhex = new byte[nlen/2]; 
hexbin2hex(bhexbin, bhex, nlen); 
return bhex; 

public static void hex2hexbin(byte[] bhex, byte[] bhexbin, int nlen) 

byte c; 
for(int i=0;i<nlen;i++) 

c = convert.tobyte((bhex[i]>>4) & 0x0f); 
if(c < 0x0a) 

bhexbin[2*i] = convert.tobyte(c + 0x30); 

else 

bhexbin[2*i] = convert.tobyte(c + 0x37); 

c = convert.tobyte(bhex[i]&0x0f); 
if(c < 0x0a) 

bhexbin[2*i+1] = convert.tobyte(c + 0x30); 

else 

bhexbin[2*i+1] = convert.tobyte(c + 0x37); 


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 湘西| 鸡东县| 鲜城| 乌苏市| 武清区| 剑河县| 河津市| 灵璧县| 宁陵县| 莱芜市| 洛川县| 雅安市| 惠水县| 余姚市| 称多县| 洪雅县| 于都县| 塔城市| 黑龙江省| 仙桃市| 嫩江县| 宜良县| 呼伦贝尔市| 博客| 区。| 三明市| 微山县| 乌鲁木齐县| 五莲县| 扎赉特旗| 桦甸市| 泊头市| 景谷| 定南县| 昌吉市| 东乡族自治县| 玉环县| 仪陇县| 理塘县| 旺苍县| 临西县|