Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static byte[] concat(byte[] A, byte[] B) {
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);
return C;
}
}