Here you can find the source of intToBytes(int v)
public static byte[] intToBytes(int v)
//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*/ }