Here you can find the source of getByteArray(ByteBuffer byteBuffer)
public static byte[] getByteArray(ByteBuffer byteBuffer)
//package com.java2s; /*/*from w w w. jav a 2s . c o m*/ * Copyright (c) 2007, 2011-2013 Eike Stepper (Berlin, Germany) and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Eike Stepper - initial API and implementation */ import java.nio.ByteBuffer; public class Main { public static byte[] getByteArray(ByteBuffer byteBuffer) { short length = byteBuffer.getShort(); byte[] array = new byte[length]; if (length != 0) { byteBuffer.get(array); } return array; } }