Java tutorial
//package com.java2s; import java.nio.ByteBuffer; public class Main { public static int bytesToInt(byte[] in) { return ByteBuffer.wrap(in).getInt(); //note: big-endian by default } }