Java ByteBuffer to Byte Array getBytesFromByteBuffer(ByteBuffer byteBuffer)

Here you can find the source of getBytesFromByteBuffer(ByteBuffer byteBuffer)

Description

get Bytes From Byte Buffer

License

Apache License

Parameter

Parameter Description
byteBuffer a parameter

Declaration

public static byte[] getBytesFromByteBuffer(ByteBuffer byteBuffer) 

Method Source Code

//package com.java2s;
/*/*from   w  w w.ja  va  2 s . com*/
 * Agiato: A simple no frill Cassandra API
 * Author: Pranab Ghosh
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you
 * may not use this file except in compliance with the License. You may
 * obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0 
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 * implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */

import java.nio.ByteBuffer;

public class Main {
    /**
     * @param byteBuffer
     * @return
     */
    public static byte[] getBytesFromByteBuffer(ByteBuffer byteBuffer) {
        byte[] bytes = new byte[byteBuffer.remaining()];
        byteBuffer.get(bytes, 0, byteBuffer.remaining());
        return bytes;
    }
}

Related

  1. getBytes(ByteBuffer floatCalculator, float number)
  2. getBytes(ByteBuffer in)
  3. getBytes(MappedByteBuffer buffer, int pos, byte[] target)
  4. getBytesAtOffset(ByteBuffer buffer, int offset, int length)
  5. getBytesFromBuffer(ByteBuffer buffer, int len)
  6. getBytesFromByteBuffer(Object obj)
  7. readBytes(byte[] dest, int offset, int length, ByteBuffer buffer)
  8. readBytes(SocketChannel socketChannel, ByteBuffer byteBuffer, int length)
  9. readBytesFromByteBuffer(ByteBuffer byteBuffer)