List of usage examples for org.apache.poi.util LittleEndian getUInt
public static long getUInt(byte[] data)
From source file:com.argo.hwp.utils.HwpStreamReader.java
License:Open Source License
/** * unsigned 4 byte/*from w w w. ja v a 2 s .co m*/ * * @return * @throws IOException */ public long uint32() throws IOException { if (ensure(4) == 0) return -1; return LittleEndian.getUInt(buf); }