Here you can find the source of intToByteArray(int i)
public static byte[] intToByteArray(int i)
//package com.java2s; public class Main { public static byte[] intToByteArray(int i) { byte[] result = new byte[4]; result[0] = (byte) ((i >> 24) & 0xFF); result[1] = (byte) ((i >> 16) & 0xFF); result[2] = (byte) ((i >> 8) & 0xFF); result[3] = (byte) (i & 0xFF); return result; }/*from ww w.jav a2s. c o m*/ }