Java tutorial
//package com.java2s; //License from project: Apache License import java.io.IOException; import java.io.RandomAccessFile; public class Main { /** * RandomAccessFile seek and readFully * * @param raf * @param index * @param buffer * @throws IOException */ private static void readFully(RandomAccessFile raf, long index, byte[] buffer) throws IOException { raf.seek(index); raf.readFully(buffer); } }