Java ByteBuffer Put putInt(ByteBuffer bb, long value)

Here you can find the source of putInt(ByteBuffer bb, long value)

Description

Put an int into the byte buffer unsigned.

License

Open Source License

Parameter

Parameter Description
bb Byte buffer
value Int to store, supplied as a long to retain sign

Declaration

public static void putInt(ByteBuffer bb, long value) 

Method Source Code

//package com.java2s;
/*/*w  ww . j a  va 2s .  c o  m*/
 * Copyright 2004 - 2013 Wayne Grant
 *           2013 - 2016 Kai Kramer
 *
 * This file is part of KeyStore Explorer.
 *
 * KeyStore Explorer is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * KeyStore Explorer is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with KeyStore Explorer.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.nio.ByteBuffer;

public class Main {
    /**
     * Put an int into the byte buffer unsigned.
     *
     * @param bb
     *            Byte buffer
     * @param value
     *            Int to store, supplied as a long to retain sign
     */
    public static void putInt(ByteBuffer bb, long value) {
        bb.putInt((int) (value & 0xffffffffL));
    }
}

Related

  1. putByteAsString(ByteBuffer buffer, byte value)
  2. putByteBuffer(ByteBuffer source, ByteBuffer target)
  3. putBytesUnescaped(ByteBuffer buffer, byte[] data)
  4. putCharSequence(ByteBuffer buf, Charset charset, CharSequence value)
  5. putDecInt(ByteBuffer buffer, int n)
  6. putInt(ByteBuffer buffer, int val, ByteOrder order)
  7. putInt(final ByteBuffer buffer, int value)
  8. putInt(int i, ByteBuffer buffer)
  9. putIntArray(int ints[], ByteBuffer bb)