Java Integer to Byte Array intToBytes(int v)

Here you can find the source of intToBytes(int v)

Description

int To Bytes

License

Open Source License

Declaration

public static byte[] intToBytes(int v) 

Method Source Code

//package com.java2s;

public class Main {
    public static byte[] intToBytes(int v) {
        byte[] bytes = new byte[4];
        bytes[0] = (byte) (v >>> 24);
        bytes[1] = (byte) (v >>> 16);
        bytes[2] = (byte) (v >>> 8);
        bytes[3] = (byte) (v >>> 0);
        return bytes;
    }/*w  w  w.j  a  v  a2s  .  c om*/
}

Related

  1. intToBytes(int n)
  2. intToBytes(int num, byte[] arr, int pos)
  3. intToBytes(int num, byte[] bytes, int startIndex)
  4. intToBytes(int number, byte[] destination, int destinationIndex)
  5. intToBytes(int v)
  6. intToBytes(int v, byte[] bytes)
  7. intToBytes(int v, final byte[] arr)
  8. intToBytes(int val)
  9. intToBytes(int val, byte[] bytes, int start)