Here you can find the source of getIntLE2(byte[] b, int offset)
public static int getIntLE2(byte[] b, int offset)
//package com.java2s; public class Main { public static int getIntLE2(byte[] b, int offset) { return ((b[offset + 1] & 0xff) << 8) | (b[offset] & 0xff); }// ww w. ja v a 2s.c o m }