收集的一些Java代码工具
- 连接两个数组
/**
* @Title: concat
* @Description: TODO 连接两个数组
* @param first
* @param second
* @return
* @return: T[] 连接后的数组
*/
public static byte[] concat(byte[] first, byte[] second) {
byte[] result = Arrays.copyOf(first, first.length + second.length);
System.arraycopy(second, 0, result, first.length, second.length);
return result;
}