Here you can find the source of byteToInt(byte b0, byte b1, byte b2, byte b3)
public static int byteToInt(byte b0, byte b1, byte b2, byte b3)
//package com.java2s; //License from project: Open Source License public class Main { public static int byteToInt(byte b0, byte b1, byte b2, byte b3) { return ((b0 & 0xFF) | ((b1 & 0xFF) << 8) | ((b2 & 0xFF) << 16) | ((b3 & 0xFF) << 24)); }//from ww w.jav a 2 s .c om }