字符串怎么转换成16进制byte

 我来答
ADHelper
2016-05-04 · 知道合伙人软件行家
ADHelper
知道合伙人软件行家
采纳数:3358 获赞数:20775
1、ADHelper产品开发经理 2、姓名测试dunjia360开发者 3、签名设计

向TA提问 私信TA
展开全部
字符串先转换二进制的在在转换16进制Byte
如下用C#实现的方法
字符转换到二进制方法
private static byte[] strToToHexByte(string hexString)
{
hexString = hexString.Replace(" ", "");
if ((hexString.Length % 2) != 0)
hexString += " ";
byte[] returnBytes = new byte[hexString.Length / 2];
for (int i = 0; i < returnBytes.Length; i++)
returnBytes[i] = Convert.ToByte(hexString.Substring(i * 2, 2), 16);
return returnBytes;
}

二进制方法转换到16进制Byte
public static string byteToHexStr(byte[] bytes)
{
string returnStr = "";
if (bytes != null)
{
for (int i = 0; i < bytes.Length; i++)
{
returnStr += bytes[i].ToString("X2");
}
}
return returnStr;
}
匿名用户
推荐于2017-11-22
展开全部
byte[] b = Encoding.ASCII.GetBytes(s);

还是将字符串转成整形,再放到一个byte里面
那就这样:
byte b = Convert.ToByte(s, 16);
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式