Java中:多个byte[]应该存放到哪个数组中???然后怎么取到???

2024-12-16 18:52:48
推荐回答(4个)
回答1:

你可以建立一个ArrayList集合:
ArrayList list = new ArrayList();
存入Byte[]时:
list.add(byte);

删除时:
list.remove(byte);
读取byte数组时,可以通过遍历获取或者直接list.get(下标);

回答2:

给你两个思路:
1、把byte数组转为arrylist,然后组合这些arrylist;
2、把byte数组变为String,然后组合到一块,再进行String遍历

回答3:

byte[] a = new byte[]{1,2,3};
byte[] b = new byte[]{4,5,6};
byte[] c = new byte[]{7,8,9};
byte[][] d = new byte[3][3];
d[0] = a;
d[1] = b;
d[2] = c;
for (int i=0;i{
byte[] by = d[i];
for (int j=0;j < by.length ;j++ )
{
System.out.println(by[j]);
}
}

回答4:

List list=new ArrayList();
放到list里面吧