Java Array Unpack UnpackLittle32(byte[] bytes, int integer)

Here you can find the source of UnpackLittle32(byte[] bytes, int integer)

Description

Unpacks a 32-bit integer value into four bytes in BIG endian format.

License

Open Source License

Parameter

Parameter Description
bytes a parameter
integer a parameter

Declaration

public static byte[] UnpackLittle32(byte[] bytes, int integer) 

Method Source Code

//package com.java2s;
/*//from w w w .  j  a v a 2  s.  c  om
 * jNoiseLib [https://github.com/andrewgp/jLibNoise]
 * Original code from libnoise [https://github.com/andrewgp/jLibNoise]
 *
 * Copyright (C) 2003, 2004 Jason Bevins
 *
 * This library 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 2.1 of the License, or (at
 * your option) any later version.
 *
 * This library 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 (COPYING.txt) for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this library; if not, write to the Free Software Foundation,
 * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * The developer's email is jlbezigvins@gmzigail.com (for great email, take
 * off every 'zig'.)
 */

public class Main {
    /**
     * Unpacks a 32-bit integer value into four bytes in BIG endian format.
     * 
     * @param bytes
     * @param integer
     * @return
     */
    public static byte[] UnpackLittle32(byte[] bytes, int integer) {
        bytes[3] = (byte) ((integer & 0x000000ff));
        bytes[2] = (byte) ((integer & 0x0000ff00) >> 8);
        bytes[1] = (byte) ((integer & 0x00ff0000) >> 16);
        bytes[0] = (byte) ((integer & 0xff000000) >> 24);
        return bytes;
    }
}

Related

  1. UnpackFloat(byte[] bytes, float value)
  2. UnpackFloatBuffer(byte[] buffer, long bytes_read, long num_loaded, float[] list)
  3. unpackInt(byte[] data, int offset)
  4. unpackIntegerByWidth(int len, byte[] buf, int offset)
  5. unpackLE(long aValue, byte[] aBuf, int aOffset)
  6. unpackLittleEndianLong(byte[] bytes)
  7. unpackLong(byte[] arr, int i, int j)
  8. unpackw(int[] sourcearray, int arraypos, int[] data, int num, int b)