private int position;
public MappedFileDataInput(FileInputStream stream, String filename, int position) throws IOException
{
FileChannel channel = stream.getChannel();
buffer = channel.map(FileChannel.MapMode.READ_ONLY, position, channel.size());
this.filename = filename;
this.position = position;
}
public MappedFileDataInput(MappedByteBuffer buffer, String filename, int position)