C#语言如何将string格式的有0x开头的16进制整数转换为byte的格式?

如何将string格式的有0x开头的16进制整数转换为byte的格式?比如stringa="0x1D";如何让byteb的值为0x1D。谢谢大家了!二楼的没有理解我的意思... 如何将string格式的有0x开头的16进制整数转换为byte的格式?

比如
string a="0x1D";
如何让byte b的值为0x1D。

谢谢大家了!
二楼的没有理解我的意思,我的意思是让带0x的字符串转换为带0x开头的byte

也就是说加入定义一个string a="0x1d";
如何转换为 byte b也等于0x1d;
一定要有0x开头。

谢谢高手了!
展开
 我来答
freeeeeewind
推荐于2016-01-01 · TA获得超过1万个赞
知道大有可为答主
回答量:3227
采纳率:94%
帮助的人:1311万
展开全部

利用System.Convert.ToByte方法可以将 0x开始的十六进制格式字符串转换成byte类型值。例如

string s = "0x55";
byte b = System.Convert.ToByte(s, 16);
Console.WriteLine(b);  //输出85

s = "0xff";
b = System.Convert.ToByte(s, 16);
Console.WriteLine(b);  //输出255

即使字符串中不包含前导"0x",System.Convert.ToByte也可完成转换

string s = "55"; //55是十六进制格式
byte b = System.Convert.ToByte(s, 16);
Console.WriteLine(b);  //输出85

s = "ff";      //ff是十六进制格式
b = System.Convert.ToByte(s, 16);
Console.WriteLine(b);  //输出255

为了防止转换过程的异常,可以用try...catch...

s = ....;
byte b = 0;
try
{
   b = System.Convert.ToByte(s, 16);  
}
catch(FormatException)
{
    Console.WriteLine("无法转换成byte类型值!");
}
驹成华嫣
2019-12-30 · TA获得超过3.7万个赞
知道大有可为答主
回答量:1.3万
采纳率:26%
帮助的人:787万
展开全部
其他的部分,你可以自己修改一下!
///
///
Summary
description
for
StrHelper.
///
命名缩写:
///
Str:
unicode
string
///
Arr:
unicode
array
///
Hex:
二进制数据
///
Hexbin:
二进制数据用ASCII字符表示

字符''1''的hex是0x31表示为hexbin是
''3''''1''
///
Asc:
ASCII
///
Uni:
UNICODE
///
public
sealed
class
StrHelper
{
#region
Hex与Hexbin的转换
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);
}
}
}
public
static
byte[]
Hex2Hexbin(byte[]
bHex,
int
nLen)
{
byte[]
bHexbin
=
new
byte[nLen
*
2];
Hex2Hexbin(bHex,
bHexbin,
nLen);
return
bHexbin;
}
#endregion
#region
数组和字符串之间的转化
public
static
byte[]
Str2Arr(String
s)
{
return
(new
UnicodeEncoding()).GetBytes(s);
}
public
static
string
Arr2Str(byte[]
buffer)
{
return
(new
UnicodeEncoding()).GetString(buffer,
0,
buffer.Length);
}
public
static
byte[]
Str2AscArr(String
s)
{
return
System.Text.UnicodeEncoding.Convert(System.Text.Encoding.Unicode,
System.Text.Encoding.ASCII,
Str2Arr(s));
}
public
static
byte[]
Str2HexAscArr(String
s)
{
byte[]
hex
=
Str2AscArr(s);
byte[]
hexbin
=
Hex2Hexbin(hex,
hex.Length);
return
hexbin;
}
public
static
string
AscArr2Str(byte[]
b)
{
return
System.Text.UnicodeEncoding.Unicode.GetString(
System.Text.ASCIIEncoding.Convert(System.Text.Encoding.ASCII,
System.Text.Encoding.Unicode,
b)
);
}
public
static
string
HexAscArr2Str(byte[]
buffer)
{
byte[]
b
=
Hex2Hexbin(buffer,
buffer.Length);
return
AscArr2Str(b);
}
#endregion
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
avenger19
推荐于2017-11-25 · TA获得超过1298个赞
知道小有建树答主
回答量:972
采纳率:0%
帮助的人:1042万
展开全部
byte b = Byte.Parse("1D",System.Globalization.NumberStyle.HexNumber)
不需要"0x"了

你在转制前把0x去掉,转回来的时候把它加上不就完了么
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
soysource
2015-08-13 · TA获得超过400个赞
知道小有建树答主
回答量:370
采纳率:0%
帮助的人:290万
展开全部
string value = original.Replace("0x", string.Empty);
byte b = Byte.Parse(value,System.Globalization.NumberStyle.HexNumber)
这样就可以了

c#的数据格式转换通常都是调用对应类的parse方法
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
skywalker380
2008-05-13 · 超过37用户采纳过TA的回答
知道小有建树答主
回答量:123
采纳率:0%
帮助的人:117万
展开全部
其他的部分,你可以自己修改一下!
/// <summary>
/// Summary description for StrHelper.
/// 命名缩写:
/// Str: unicode string
/// Arr: unicode array
/// Hex: 二进制数据
/// Hexbin: 二进制数据用ASCII字符表示 例 字符''1''的hex是0x31表示为hexbin是 ''3''''1''
/// Asc: ASCII
/// Uni: UNICODE
/// </summary>
public sealed class StrHelper
{
#region Hex与Hexbin的转换
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);
}
}
}
public static byte[] Hex2Hexbin(byte[] bHex, int nLen)
{
byte[] bHexbin = new byte[nLen * 2];
Hex2Hexbin(bHex, bHexbin, nLen);
return bHexbin;
}
#endregion

#region 数组和字符串之间的转化
public static byte[] Str2Arr(String s)
{
return (new UnicodeEncoding()).GetBytes(s);
}
public static string Arr2Str(byte[] buffer)
{
return (new UnicodeEncoding()).GetString(buffer, 0, buffer.Length);
}

public static byte[] Str2AscArr(String s)
{
return System.Text.UnicodeEncoding.Convert(System.Text.Encoding.Unicode,
System.Text.Encoding.ASCII,
Str2Arr(s));
}

public static byte[] Str2HexAscArr(String s)
{
byte[] hex = Str2AscArr(s);
byte[] hexbin = Hex2Hexbin(hex, hex.Length);
return hexbin;
}
public static string AscArr2Str(byte[] b)
{
return System.Text.UnicodeEncoding.Unicode.GetString(
System.Text.ASCIIEncoding.Convert(System.Text.Encoding.ASCII,
System.Text.Encoding.Unicode,
b)
);
}

public static string HexAscArr2Str(byte[] buffer)
{
byte[] b = Hex2Hexbin(buffer, buffer.Length);
return AscArr2Str(b);
}
#endregion
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(5)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式