Here you can find the source of int2bytes(int i)
public static byte[] int2bytes(int i)
//package com.java2s; //License from project: Open Source License public class Main { public static byte[] int2bytes(int i) { byte[] bytes = new byte[4]; int2bytes(i, bytes, 0); return bytes; }/*w w w . j a v a 2 s . co m*/ public static void int2bytes(int i, byte[] bytes, int offset) { bytes[offset + 0] = (byte) (i >>> 24); bytes[offset + 1] = (byte) (i >>> 16); bytes[offset + 2] = (byte) (i >>> 8); bytes[offset + 3] = (byte) i; } }