你可以建立一个ArrayList集合:
ArrayList
存入Byte[]时:
list.add(byte);
删除时:
list.remove(byte);
读取byte数组时,可以通过遍历获取或者直接list.get(下标);
给你两个思路:
1、把byte数组转为arrylist,然后组合这些arrylist;
2、把byte数组变为String,然后组合到一块,再进行String遍历
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]);
}
}
List
放到list里面吧