Here you can find the source of arrayComb(byte[] prep, byte[] after)
public static byte[] arrayComb(byte[] prep, byte[] after)
//package com.java2s; public class Main { public static byte[] arrayComb(byte[] prep, byte[] after) { byte[] result = new byte[prep.length + after.length]; System.arraycopy(prep, 0, result, 0, prep.length); System.arraycopy(after, 0, result, prep.length, after.length); return result; }/*from w w w . j ava 2 s .co m*/ public static byte[] arraycopy(byte[] from, byte[] to) { System.arraycopy(from, 0, to, 0, from.length); return to; } }