Java ByteBuffer Split splitShortToBuffers(ByteBuffer buffer, ByteBuffer buffer1, short iValue)

Here you can find the source of splitShortToBuffers(ByteBuffer buffer, ByteBuffer buffer1, short iValue)

Description

Split short value into two byte buffer.

License

Apache License

Parameter

Parameter Description
buffer to write first part of value
buffer1 to write second part of value

Declaration

public static void splitShortToBuffers(ByteBuffer buffer,
        ByteBuffer buffer1, short iValue) 

Method Source Code

//package com.java2s;
/*/*from  w w w  . j  a  va2 s. c  o  m*/
 * Copyright 1999-2012 Luca Garulli (l.garulli--at--orientechnologies.com)
 *
 * 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 {
    private static final int SIZE_OF_BYTE_IN_BITS = 8;
    private static final int MASK = 0x000000FF;

    /**
     * Split short value into two byte buffer. First byte of short will be written to first byte buffer and second to second one.
     * 
     * @param buffer
     *          to write first part of value
     * @param buffer1
     *          to write second part of value
     */
    public static void splitShortToBuffers(ByteBuffer buffer,
            ByteBuffer buffer1, short iValue) {
        buffer.put((byte) (MASK & (iValue >>> SIZE_OF_BYTE_IN_BITS)));
        buffer1.put((byte) (MASK & iValue));
    }
}

Related

  1. split(ByteBuffer buffer, byte tag)
  2. split(ByteBuffer buffer, int position)
  3. split(ByteBuffer src, int unitSize)
  4. splitLongToBuffers(ByteBuffer buffer, ByteBuffer buffer1, long iValue)