Here you can find the source of putInt(int value, int offset, byte[] byteArr)
public static void putInt(int value, int offset, byte[] byteArr)
//package com.java2s; //License from project: Open Source License public class Main { public static void putInt(int value, int offset, byte[] byteArr) { byteArr[offset + 0] = (byte) (value >>> 24); byteArr[offset + 1] = (byte) (value >>> 16); byteArr[offset + 2] = (byte) (value >>> 8); byteArr[offset + 3] = (byte) (value >>> 0); }/* w w w.j av a2 s . c o m*/ }