public static org.apache.poi.poifs.storage.BlockList | getSmallDocumentBlocks(org.apache.poi.poifs.storage.RawDataBlockList blockList, org.apache.poi.poifs.property.RootProperty root, int sbatStart)fetch the small document block list from an existing file
BlockList list =
new SmallDocumentBlockList(SmallDocumentBlock
.extract(blockList.fetchBlocks(root.getStartBlock())));
new BlockAllocationTableReader(blockList.fetchBlocks(sbatStart),
list);
return list;
|