[]
        
(Showing Draft Content)

CSJ2K.j2k.io.BufferedRandomAccessFile.readUnsignedInt

readUnsignedInt Method

readUnsignedInt()

Should read an unsigned int (i.e., 32 bit) from the input. It is returned as a long since Java does not have an unsigned short type. Prior to reading, the input should be realigned at the byte level.

Declaration
public abstract long readUnsignedInt()
Returns
Type Description
long

The next byte-aligned unsigned int (32 bit) from the input, as a long.

Implements