Java ByteBuffer to Byte Array bytes(ByteBuffer bb)

Here you can find the source of bytes(ByteBuffer bb)

Description

bytes

License

Apache License

Declaration

public static byte[] bytes(ByteBuffer bb) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright 2012 Apigee Corporation/*from ww  w.  ja  va 2s  . c o  m*/
 * 
 * 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.io.UnsupportedEncodingException;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;

import java.util.Date;

import java.util.UUID;

public class Main {
    /**
     * 
     */
    public static final String UTF8_ENCODING = "UTF-8";

    /**
     * @param uuid
     * @return
     */
    public static byte[] bytes(UUID uuid) {
        if (uuid == null) {
            return null;
        }
        long msb = uuid.getMostSignificantBits();
        long lsb = uuid.getLeastSignificantBits();
        byte[] buffer = new byte[16];

        for (int i = 0; i < 8; i++) {
            buffer[i] = (byte) (msb >>> (8 * (7 - i)));
        }
        for (int i = 8; i < 16; i++) {
            buffer[i] = (byte) (lsb >>> (8 * (7 - i)));
        }

        return buffer;
    }

    /**
     * @param s
     * @return
     */
    public static byte[] bytes(String s) {
        return bytes(s, UTF8_ENCODING);
    }

    /**
     * @param s
     * @param encoding
     * @return
     */
    public static byte[] bytes(String s, String encoding) {
        try {
            return s.getBytes(encoding);
        } catch (UnsupportedEncodingException e) {
            // logger.log(Level.SEVERE, "UnsupportedEncodingException ", e);
            throw new RuntimeException(e);
        }
    }

    public static byte[] bytes(ByteBuffer bb) {
        byte[] b = new byte[bb.remaining()];
        bb.duplicate().get(b);
        return b;
    }

    /**
     * @param b
     * @return
     */
    public static byte[] bytes(Boolean b) {
        byte[] bytes = new byte[1];
        bytes[0] = b ? (byte) 1 : 0;
        return bytes;
    }

    /**
     * @param val
     * @return
     */
    public static byte[] bytes(Long val) {
        ByteBuffer buf = ByteBuffer.allocate(8);
        buf.order(ByteOrder.BIG_ENDIAN);
        buf.putLong(val);
        return buf.array();
    }

    /**
     * @param obj
     * @return
     */
    public static byte[] bytes(Object obj) {
        if (obj == null) {
            return new byte[0];
        } else if (obj instanceof byte[]) {
            return (byte[]) obj;
        } else if (obj instanceof Long) {
            return bytes((Long) obj);
        } else if (obj instanceof String) {
            return bytes((String) obj);
        } else if (obj instanceof UUID) {
            return bytes((UUID) obj);
        } else if (obj instanceof Boolean) {
            return bytes((Boolean) obj);
        } else if (obj instanceof Date) {
            return bytes(((Date) obj).getTime());
        } else {
            return bytes(obj.toString());
        }
    }
}

Related

  1. byteBufferToByteArray(ByteBuffer buf)
  2. ByteBufferToByteArray(ByteBuffer byteBuffer)
  3. byteBufferToByteArray(ByteBuffer byteBuffer)
  4. byteBufferToByteArray(List byteBufferList)
  5. byteBufferToBytes(ByteBuffer buffer)
  6. bytes(ByteBuffer buf)
  7. convertToBytes(@Nonnull ByteBuffer buffer)
  8. convertVarIntByteBufferToByteArray(ByteBuffer byteBuffer)
  9. deserializeBytes(ByteBuffer buf)