lizhanwei
2020-03-21 46bf3d68645d566e726288279c026033901c67b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.safeluck.aykj.utils;
 
import android.util.Log;
 
import static com.anyun.im_lib.util.ByteUtil.byte2HexStr;
 
public class ArrayUtils {
 
    public static byte[] subArray(byte[] srcBytes, int begin, int length) {
        byte[] bytes = new byte[length];
        System.arraycopy(srcBytes,begin,bytes,0,length);
        return bytes;
    }
}