Skip to content

Instantly share code, notes, and snippets.

@lenn0x
Created April 9, 2012 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lenn0x/2347094 to your computer and use it in GitHub Desktop.
Save lenn0x/2347094 to your computer and use it in GitHub Desktop.
public static byte[] getArray(ByteBuffer buffer)
{
int length = buffer.remaining();
if (buffer.hasArray())
{
int boff = buffer.arrayOffset() + buffer.position();
if (boff == 0 && length == buffer.array().length)
return buffer.array();
else
return Arrays.copyOfRange(buffer.array(), boff, boff + length);
}
// else, DirectByteBuffer.get() is the fastest route
byte[] bytes = new byte[length];
buffer.duplicate().get(bytes);
return bytes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment