Java tutorial
//package com.java2s; import java.nio.ByteBuffer; public class Main { /** * Converts a byte array to an int. * * @param bytes the bytes * @return the int from byte array */ public static int getIntFromByteArray(final byte[] bytes) { return ByteBuffer.wrap(bytes).getInt(); } }