欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

System.arraycopy把多个byte数组合并为一个byte数组,节省空间。

程序员文章站 2022-03-30 19:22:52
...
1.前言。
   如题。

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));
	}
}