Here you can find the source of getUInt32(ByteBuffer b)
public static long getUInt32(ByteBuffer b)
//package com.java2s; //License from project: Apache License import java.nio.ByteBuffer; public class Main { public static long getUInt32(ByteBuffer b) { return (b.getInt() & 0xFFFFFFFFL); }//from w ww .java 2 s .com public static int[] getInt(ByteBuffer b, int n) { int i[] = new int[n]; for (int k = 0; k < i.length; k++) { i[k] = b.getInt(); } return i; } }