举例:现在有一个长度为5位的数组,现在想去掉前两个字节和最后一个字节
实现:
byte[] haha = new byte[]{1,2,3,4,5};byte[] enen = Arrays.copyOfRange(haha, 2, haha.length-1);