org.apache.poi.hssf.eventusermodel |
HSSF eventmodel Package provides an event-based API for reading HSSF files.
Related Documentation
The event model can reald XLS files with a very small memory footprint. For
writing you still have to use the usermodel. The eventmodel is to the usermodel
what SAX is to DOM.
For overviews, tutorials, examples, guides, and tool documentation, please see:
@see org.apache.poi.hssf.usermodel
@see org.apache.poi.hssf.record
|
Java Source File Name | Type | Comment |
AbortableHSSFListener.java | Class | Interface for use with the HSSFRequest and HSSFEventFactory. |
HSSFEventFactory.java | Class | Low level event based HSSF reader. |
HSSFListener.java | Interface | Interface for use with the HSSFRequest and HSSFEventFactory. |
HSSFRequest.java | Class | An HSSFRequest object should be constructed registering an instance or multiple
instances of HSSFListener with each Record.sid you wish to listen for.
See Also: org.apache.poi.hssf.eventusermodel.HSSFEventFactory See Also: org.apache.poi.hssf.eventusermodel.HSSFListener See Also: org.apache.poi.hssf.dev.EFHSSF See Also: org.apache.poi.hssf.eventusermodel.HSSFUserException author: Andrew C. |
HSSFUserException.java | Class | This exception is provided as a way for API users to throw
exceptions from their event handling code. |
MissingRecordAwareHSSFListener.java | Class | A HSSFListener which tracks rows and columns, and will
trigger your HSSFListener for all rows and cells,
even the ones that aren't actually stored in the file.
This allows your code to have a more "Excel" like
view of the data in the file, and not have to worry
(as much) about if a particular row/cell is in the
file, or was skipped from being written as it was
blank. |
TestHSSFEventFactory.java | Class | |
TestMissingRecordAwareHSSFListener.java | Class | |