| java.lang.Object org.apache.poi.hssf.eventusermodel.examples.XLS2CSVmra
XLS2CSVmra | public class XLS2CSVmra implements HSSFListener(Code) | | A XLS -> CSV processor, that uses the MissingRecordAware
EventModel code to ensure it outputs all columns and rows.
author: Nick Burch |
Method Summary | |
public static void | main(String[] args) | public void | process() | public void | processRecord(Record record) Main HSSFListener method, processes events, and outputs the
CSV as the file is processed. |
XLS2CSVmra | public XLS2CSVmra(POIFSFileSystem fs, PrintStream output, int minColumns)(Code) | | Creates a new XLS -> CSV converter
Parameters: fs - The POIFSFileSystem to process Parameters: output - The PrintStream to output the CSV to Parameters: minColumns - The minimum number of columns to output, or -1 for no minimum |
process | public void process() throws IOException(Code) | | Initiates the processing of the XLS file to CSV
|
processRecord | public void processRecord(Record record)(Code) | | Main HSSFListener method, processes events, and outputs the
CSV as the file is processed.
|
|
|