Example usage for org.apache.poi.hwpf.converter HtmlDocumentFacade HtmlDocumentFacade

List of usage examples for org.apache.poi.hwpf.converter HtmlDocumentFacade HtmlDocumentFacade

Introduction

In this page you can find the example usage for org.apache.poi.hwpf.converter HtmlDocumentFacade HtmlDocumentFacade.

Prototype

public HtmlDocumentFacade(Document document) 

Source Link

Usage

From source file:com.report.excel.ExcelToHtmlConverter.java

License:Apache License

public ExcelToHtmlConverter(Document doc) {
    htmlDocumentFacade = new HtmlDocumentFacade(doc);
}

From source file:com.wangzhu.poi.ExcelToHtmlConverter.java

License:Apache License

public ExcelToHtmlConverter(Document doc) {
    this.htmlDocumentFacade = new HtmlDocumentFacade(doc);
}