()
| 383 | } |
| 384 | |
| 385 | long getUInt() throws IOException { |
| 386 | long b0 = getByte(); |
| 387 | long b1 = getByte(); |
| 388 | long b2 = getByte(); |
| 389 | long b3 = getByte(); |
| 390 | if (littleEndian) |
| 391 | return ((b3<<24) + (b2<<16) + (b1<<8) + b0); |
| 392 | else |
| 393 | return ((b0<<24) + (b1<<16) + (b2<<8) + b3); |
| 394 | } |
| 395 | |
| 396 | double getDouble() throws IOException { |
| 397 | int b0 = getByte(); |