我正在尝试将字符串转换为具有 2 个不同字节的字节数组。例如:String s1 = " 055E"
我需要将其转换为like
byte b1 = Integer.parseInt(05,16); - 1byte
byte b2 = Integer.parseInt(5E,16); - 1byte
最后我需要一个字节数组,它的值将是 b1,b2。
byte[] b = {b1, b2};
对此的任何帮助将不胜感激。提前致谢
我正在尝试将字符串转换为具有 2 个不同字节的字节数组。例如:String s1 = " 055E"
我需要将其转换为like
byte b1 = Integer.parseInt(05,16); - 1byte
byte b2 = Integer.parseInt(5E,16); - 1byte
最后我需要一个字节数组,它的值将是 b1,b2。
byte[] b = {b1, b2};
对此的任何帮助将不胜感激。提前致谢
试试这个:
String s1 = " 055E";
s1 = s1.trim();
byte[] b = {
(byte) Integer.parseInt(s1.substring(0, 2), 16),
(byte) Integer.parseInt(s1,substring(2), 16)
}
首先为数组分配足够的内存。然后遍历每一对字符并将它们转换为一个字节。将结果存储在数组中。
s = s.trim();
byte[] b = new byte[s.length()/2];
for(int i = 0; i < s.length(); i+= 2) {
b[i/2] = Byte.parseByte(s.substring(i,i+2),16);
}