Here you can find the source of divideBytearrays(byte[] ret, int headerLength, byte[] bArr)
public static byte[] divideBytearrays(byte[] ret, int headerLength, byte[] bArr)
//package com.java2s; //License from project: Apache License public class Main { public static byte[] divideBytearrays(byte[] ret, int headerLength, byte[] bArr) { System.arraycopy(bArr, headerLength, ret, 0, bArr.length - headerLength); return ret; }/*from w w w .j a v a2s . com*/ }