在原字节数组前加上2字节的字节数组长度

/**
     * 在原byte数组前加上2位的长度字节
     * @param b 原数组
     * @return 
     */
    public static byte[] addLengthToByteArray(byte[] b) {
        int length = b.length;
        byte[] nameAndLength = new byte[length + 2];
        System.arraycopy(Converser.short2Bytes((short) length), 0, nameAndLength, 0, 2);
        System.arraycopy(b, 0, nameAndLength, 2, length);
        return nameAndLength;
    }

你可能感兴趣的:(java,byte[],长度,字节数组)