十六进制和ASCII之间的转换

2.关于两个byte[]数组的合并:

	public static byte[] byteMerger(byte[] byte_1, byte[] byte_2) {
		byte[] byte_3 = new byte[byte_1.length + byte_2.length];
		System.arraycopy(byte_1, 0, byte_3, 0, byte_1.length);
		System.arraycopy(byte_2, 0, byte_3, byte_1.length, byte_2.length);
		return byte_3;
	}


原文地址:https://www.cnblogs.com/sowhat4999/p/4439857.html