我有一个问题:我使用byte []存储数据,但我必须连接几个byte [] togather,我知道Arrays.addAll(Arrays.asList(Byte []))会做的事情,但是如何将byte []转换为Byte [],以及如何将Byte []转换为byte []?
答案 0 :(得分:0)
将字节转换为字节
public class convertByteTobyte {
public static void main(String[] args) {
Byte[] Byte = new Byte[50];
System.out.println("Byte length is:" + Byte.length);
byte[] b = new byte[Byte.length];
for (int i = 0; i < Byte.length; i++) {
b[i] = Byte[i];
}
System.out.println("byte length is:" + b.length);
}
}
将字节转换为字节
public class ConvertbyteToByte {
public static void main(String[] args) {
byte[] b = new byte[50];
System.out.println("byte length is:" + b.length);
Byte[] Byte = new Byte[b.length];
for (int i = 0; i < b.length; i++) {
Byte[i] = b[i];
}
System.out.println("Byte length is:" + Byte.length);
}
}