Here you can find the source of Bytes4ToInt(byte abyte0[], int offset)
public static int Bytes4ToInt(byte abyte0[], int offset)
//package com.java2s; //License from project: Apache License public class Main { public static int Bytes4ToInt(byte abyte0[], int offset) { return (0xff & abyte0[offset]) << 24 | (0xff & abyte0[offset + 1]) << 16 | (0xff & abyte0[offset + 2]) << 8 | 0xff & abyte0[offset + 3]; }/*from w ww. j a v a 2s .c om*/ }