System.arraycopy把多个byte数组合并为一个byte数组,节省空间。
程序员文章站
2022-03-30 19:22:52
...
1.前言。
如题。
2.代码。
如题。
2.代码。
public class Tset { public static void main(String[] args) { // System.out.println(Long.toBinaryString(14000l)); // System.out.println(new Timestamp().getDateTime()); // System.out.println(new Timestamp()); byte[] a=new byte[]{1,2,3,4}; byte[] b=new byte[]{5,6,7}; byte[] c=new byte[a.length+b.length]; System.arraycopy(a, 0, c, 0, a.length); System.arraycopy(b, 0, c, a.length, b.length); System.out.println(Arrays.toString(c)); } }