Here you can find the source of makeInt(byte b3, byte b2, byte b1, byte b0)
static private int makeInt(byte b3, byte b2, byte b1, byte b0)
//package com.java2s; public class Main { static private int makeInt(byte b3, byte b2, byte b1, byte b0) { return (int) ((((b3 & 0xff) << 24) | ((b2 & 0xff) << 16) | ((b1 & 0xff) << 8) | ((b0 & 0xff) << 0))); }/*from w w w . ja va 2 s . co m*/ }