Package io.keikai.range
Interface SExporter
-
- All Known Implementing Classes:
AbstractExcelExporter,AbstractExporter,ExcelXlsExporter,ExcelXlsxExporter
public interface SExporterAn exporter can export a book model to a output stream or file.- Since:
- 3.5.0
- Author:
- dennis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexport(SBook book, java.io.File file)Export a bookvoidexport(SBook book, java.io.OutputStream fos)Export a book
-
-
-
Method Detail
-
export
void export(SBook book, java.io.OutputStream fos) throws java.io.IOException
Export a book- Parameters:
book- the book to exportfos- the output stream to store data- Throws:
java.io.IOException
-
export
void export(SBook book, java.io.File file) throws java.io.IOException
Export a book- Parameters:
book- the book to exportfile- the output file to store data- Throws:
java.io.IOException
-
-