Interface SExporter

All Known Implementing Classes:
AbstractExcelExporter, AbstractExporter, ExcelXlsExporter, ExcelXlsxExporter

public interface SExporter
An exporter can export a book model to a output stream or file.
Since:
3.5.0
Author:
dennis
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    export(SBook book, File file)
    Export a book
    void
    Export a book
  • Method Details

    • export

      void export(SBook book, OutputStream fos) throws IOException
      Export a book
      Parameters:
      book - the book to export
      fos - the output stream to store data
      Throws:
      IOException
    • export

      void export(SBook book, File file) throws IOException
      Export a book
      Parameters:
      book - the book to export
      file - the output file to store data
      Throws:
      IOException