public Attributes readDataset(int len, int stopTag) throws IOException {
handler.startDataset(this);
readFileMetaInformation();
Attributes attrs = new Attributes(bigEndian, 64);
readAttributes(attrs, len, stopTag);
attrs.trimToSize();
handler.endDataset(this);
return attrs;
}
public Attributes readFileMetaInformation() throws IOException {