Java Integer to intToBuffer(int i, byte[] ioBuffer)

Here you can find the source of intToBuffer(int i, byte[] ioBuffer)

Description

int To Buffer

License

Open Source License

Declaration

public static void intToBuffer(int i, byte[] ioBuffer) 

Method Source Code

//package com.java2s;
/*/* ww w  .j  a  v  a 2 s  . co m*/
 * ao-lang - Minimal Java library with no external dependencies shared by many other projects.
 * Copyright (C) 2011, 2012, 2013, 2015, 2016, 2017  AO Industries, Inc.
 *     support@aoindustries.com
 *     7262 Bull Pen Cir
 *     Mobile, AL 36695
 *
 * This file is part of ao-lang.
 *
 * ao-lang is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * ao-lang 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with ao-lang.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    public static void intToBuffer(int i, byte[] ioBuffer) {
        ioBuffer[0] = (byte) (i >>> 24);
        ioBuffer[1] = (byte) (i >>> 16);
        ioBuffer[2] = (byte) (i >>> 8);
        ioBuffer[3] = (byte) i;
    }

    public static void intToBuffer(int i, byte[] ioBuffer, int off) {
        ioBuffer[off] = (byte) (i >>> 24);
        ioBuffer[off + 1] = (byte) (i >>> 16);
        ioBuffer[off + 2] = (byte) (i >>> 8);
        ioBuffer[off + 3] = (byte) i;
    }
}

Related

  1. intToBcd(int src, int len, int flag)
  2. intToBigEndian(int value, byte[] array, int index)
  3. intToBigEndianByteArray(int in)
  4. intToBlue(int color)
  5. IntToBuf2BE(int val, byte[] buf, int offset)
  6. intToCodeString(int value)
  7. intToColour(int colour)
  8. intToCols(int i)
  9. intToColumnName(int column)