Java tutorial
//package com.java2s; //License from project: Apache License public class Main { public static byte[] removeLengthByte(byte[] base) { byte[] value = new byte[base.length - 1]; System.arraycopy(base, 1, value, 0, base.length - 1); return value; } }