Java Integer to Byte int2ByteArrayLength4(int theInt)

Here you can find the source of int2ByteArrayLength4(int theInt)

Description

int Byte Array Length

License

Open Source License

Declaration

public static byte[] int2ByteArrayLength4(int theInt) 

Method Source Code

//package com.java2s;
/* BioWebAuth (Biometrics for Web Authentication) is an open-source Java 
 * framework intended to provide web authentication based on BioAPI-compliant 
 * biometric software or devices.//from   www. j  ava 2 s  .  c o m
 * 
 * Copyright (c) 2005-2007 Elisardo Gonzalez Agulla <eli@gts.tsc.uvigo.es> 
 *                  & Enrique Otero Muras <eotero@gts.tsc.uvigo.es>
 *
 * 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 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

public class Main {
    public static byte[] int2ByteArrayLength4(int theInt) {
        byte[] byteLong = new byte[4];
        byteLong[0] = (byte) ((theInt >>> 24) & 0xff);
        byteLong[1] = (byte) ((theInt >>> 16) & 0xff);
        byteLong[2] = (byte) ((theInt >>> 8) & 0xff);
        byteLong[3] = (byte) ((theInt) & 0xff);
        return byteLong;
    }
}

Related

  1. int2byte(int[] ia)
  2. int2ByteArray(int i)
  3. int2byteArray(int k, byte b[], int off)
  4. int2ByteArray(int value)
  5. int2byteArray(int[] i)
  6. int2ToByteArray(int value)
  7. int2ubyte(int in)
  8. intAsByte(int value)
  9. intTo1Byte(int x)