public class POIServiceImpl extends loci.common.services.AbstractService implements POIService
Modifier and Type | Field and Description |
---|---|
private Vector<String> |
filePath |
private Hashtable<String,loci.poi.poifs.filesystem.DocumentEntry> |
files |
private Hashtable<String,Integer> |
fileSizes |
private loci.poi.poifs.filesystem.POIFSFileSystem |
fileSystem |
private static int |
MAX_BLOCK_SIZE |
private loci.poi.poifs.filesystem.DirectoryEntry |
root |
private loci.common.RandomAccessInputStream |
stream |
Constructor and Description |
---|
POIServiceImpl()
Default constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Close the current POI file system.
|
byte[] |
getDocumentBytes(String file)
Retrieve all of the raw bytes that correspond to the given file name.
|
byte[] |
getDocumentBytes(String file,
int length)
Retrieve at most 'length' bytes that correspond to the given file name.
|
Vector<String> |
getDocumentList()
Retrieve a list of all files in the current POI file system.
|
loci.common.RandomAccessInputStream |
getDocumentStream(String file)
Retrieve a RandomAccessInputStream corresponding to the given file name.
|
int |
getFileSize(String file)
Retrieve the total number of bytes in the given file.
|
InputStream |
getInputStream(String file)
Retrieve an InputStream corresponding to the given file name.
|
void |
initialize(loci.common.RandomAccessInputStream s)
Construct a new POI filesystem around the given stream.
|
void |
initialize(String file)
Construct a new POI filesystem around the given file.
|
private void |
parseFile(loci.poi.poifs.filesystem.DirectoryEntry r) |
private static final int MAX_BLOCK_SIZE
private loci.poi.poifs.filesystem.POIFSFileSystem fileSystem
private loci.poi.poifs.filesystem.DirectoryEntry root
private loci.common.RandomAccessInputStream stream
public void initialize(String file) throws IOException
POIService
initialize
in interface POIService
IOException
- if an error occurred when opening the file.public void initialize(loci.common.RandomAccessInputStream s) throws IOException
POIService
initialize
in interface POIService
IOException
- if an error occurred when reading from the stream.public InputStream getInputStream(String file) throws IOException
POIService
getInputStream
in interface POIService
file
- The name of the embedded file for which to
retrieve an InputStream.IOException
- if an error occurred when reading the filepublic loci.common.RandomAccessInputStream getDocumentStream(String file) throws IOException
POIService
getDocumentStream
in interface POIService
file
- The name of the embedded file for which to
retrieve a RandomAccessInputStream.IOException
- if an error occurred when reading the filepublic byte[] getDocumentBytes(String file) throws IOException
POIService
getDocumentBytes
in interface POIService
file
- The name of the embedded file for which to retrieve bytes.IOException
- if an error occurred when reading the filepublic byte[] getDocumentBytes(String file, int length) throws IOException
POIService
getDocumentBytes
in interface POIService
file
- The name of the embedded file for which to retrieve bytes.IOException
- if an error occurred when reading the filepublic int getFileSize(String file)
POIService
getFileSize
in interface POIService
file
- The name of the embedded file.public Vector<String> getDocumentList()
POIService
getDocumentList
in interface POIService
public void close() throws IOException
POIService
close
in interface POIService
IOException
private void parseFile(loci.poi.poifs.filesystem.DirectoryEntry r) throws IOException
IOException
Copyright © 2017 Open Microscopy Environment