Class ExcelToHtmlConverter

java.lang.Object
org.apache.poi.hssf.converter.AbstractExcelConverter
org.apache.poi.hssf.converter.ExcelToHtmlConverter

@Beta public class ExcelToHtmlConverter extends AbstractExcelConverter
Converts xls files (97-2007) to HTML file.
  • Constructor Details

    • ExcelToHtmlConverter

      public ExcelToHtmlConverter(Document doc)
    • ExcelToHtmlConverter

      public ExcelToHtmlConverter(HtmlDocumentFacade htmlDocumentFacade)
  • Method Details

    • main

      public static void main(String[] args) throws Exception
      Java main() interface to interact with ExcelToHtmlConverter

      Usage: ExcelToHtmlConverter infile outfile

      Where infile is an input .xls file ( Word 97-2007) which will be rendered as HTML into outfile
      Throws:
      Exception
    • process

      public static Document process(File xlsFile) throws IOException, ParserConfigurationException
      Converts Excel file (97-2007) into HTML file.
      Parameters:
      xlsFile - workbook file to process
      Returns:
      DOM representation of result HTML
      Throws:
      IOException - If an error occurs reading or writing files
      ParserConfigurationException - If configuration is incorrect
      RuntimeException - a number of runtime exceptions can be thrown, especially if there are problems with the input format
    • process

      public static Document process(InputStream xlsStream) throws IOException, ParserConfigurationException
      Converts Excel file (97-2007) into HTML file.
      Parameters:
      xlsStream - workbook stream to process
      Returns:
      DOM representation of result HTML
      Throws:
      IOException - If an error occurs reading or writing files
      ParserConfigurationException - If configuration is incorrect
      RuntimeException - a number of runtime exceptions can be thrown, especially if there are problems with the input format
    • process

      public static Document process(HSSFWorkbook workbook) throws IOException, ParserConfigurationException
      Converts Excel file (97-2007) into HTML file.
      Parameters:
      workbook - workbook instance to process
      Returns:
      DOM representation of result HTML
      Throws:
      IOException - If an error occurs reading or writing files
      ParserConfigurationException - If configuration is incorrect
      RuntimeException - a number of runtime exceptions can be thrown, especially if there are problems with the input format
    • getCssClassPrefixCell

      public String getCssClassPrefixCell()
    • getCssClassPrefixDiv

      public String getCssClassPrefixDiv()
    • getCssClassPrefixRow

      public String getCssClassPrefixRow()
    • getCssClassPrefixTable

      public String getCssClassPrefixTable()
    • getDocument

      public Document getDocument()
    • isUseDivsToSpan

      public boolean isUseDivsToSpan()
    • processWorkbook

      public void processWorkbook(HSSFWorkbook workbook)
    • setCssClassPrefixCell

      public void setCssClassPrefixCell(String cssClassPrefixCell)
    • setCssClassPrefixDiv

      public void setCssClassPrefixDiv(String cssClassPrefixDiv)
    • setCssClassPrefixRow

      public void setCssClassPrefixRow(String cssClassPrefixRow)
    • setCssClassPrefixTable

      public void setCssClassPrefixTable(String cssClassPrefixTable)
    • setUseDivsToSpan

      public void setUseDivsToSpan(boolean useDivsToSpan)
      Allows converter to wrap content into two additional DIVs with tricky styles, so it will wrap across empty cells (like in Excel).

      Warning: after enabling this mode do not serialize result HTML with INDENT=YES option, because line breaks will make additional (unwanted) changes