C# byte数组 中 指定元素 比如 第 0个至 第 7 个 转换16进制字符串。

 我来答
萧春堂珍
2020-06-03 · TA获得超过3.7万个赞
知道大有可为答主
回答量:1.4万
采纳率:33%
帮助的人:644万
展开全部
忘记登陆了,给你写一个吧:其实就是使用Convert类转化,别的都是为了定位转换位置的,自己完善吧。
class
Program
{
static
void
Main(string[]
args)
{
byte[]
data1
=
{
236,
3,
0,
214,
240,
0,
32,
45,
16,
234,
0,
0,
214,
240,
0,
32,
45,
17,
235,
16,
0,
214,
240,
0,
32,
45,
16,
234,
16
};
Console.WriteLine("请输入许转换的开始位置:");
int
start
=
Int32.Parse(
Console.ReadLine());
Console.WriteLine("请输入许转换的开始位置:");
int
end
=
Int32.Parse(Console.ReadLine());
if
(end
>=
data1.Length)
Console.WriteLine("超出数组范围:");
else
{
string[]
ox
=
new
string[(end
-
start)
+
2];
int
i
=
0;
for
(int
index
=
start
-
1;
index
<=
end;
index++)
{
ox[i++]
=
Convert.ToString(data1[index],
16);
}
Console.WriteLine("转换结果:");
int
j
=
start
-
1;
for
(int
index
=
0;
index
<
ox.Length;
index++)
{
Console.WriteLine(data1[j++]
+":"
+ox[index]
+"\t");
}
}
Console.ReadLine();
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
蓬芙弓画
2019-03-13 · TA获得超过3.7万个赞
知道大有可为答主
回答量:1.4万
采纳率:35%
帮助的人:753万
展开全部
放入数组:
byte[]
b=new
byte[2];
b.setvalue(1000,0);
从数组取出:
bitconverter.toint16(byte,0);
你试一下,以上的放入数组的没试过,你试下,
还有一种笨方法
byte[]
b=new
byte[2];
int
x=1000/256;
int
y=1000%256;
b[0]=
convert.tobyte(x);
b[1]=
convert.tobyte(y);
注意运用的时候,有高低位之说,你实际看下那个字节为高位那个为低位,将相除的商放到高位,我上面写的是将高位放到了b[0]中。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式