Android Int to Byte Array Convert int2ByteArrayLittleEndian(int num)

Here you can find the source of int2ByteArrayLittleEndian(int num)

Description

int Byte Array Little Endian

License

Open Source License

Declaration

public static byte[] int2ByteArrayLittleEndian(int num) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {

    public static byte[] int2ByteArrayLittleEndian(int num) {
        byte[] b = new byte[4];
        b[3] = (byte) (num >>> 24);
        b[2] = (byte) (num >>> 16);
        b[1] = (byte) (num >>> 8);
        b[0] = (byte) num;
        return b;
    }/*from  w  ww .  j  a  va2 s  .c  o m*/
}

Related

  1. getAs_uint16_NetOrder(int theNumber)
  2. getAs_uint32_NetOrder(int theNumber)
  3. toBytes(int integer, byte[] output, int offset)
  4. int2ByteArray(int num)
  5. int2ByteArrayBigEndian(int num)