Browse Source

github-52: add ExcelToHtmlConverter method that works on InputStreams. Thanks to Tony Zeng! This closes #52.

https://github.com/apache/poi/pull/52

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1795256 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_17_BETA1
Javen O'Neal 7 years ago
parent
commit
1e9bc2edbb

+ 39
- 2
src/scratchpad/src/org/apache/poi/hssf/converter/ExcelToHtmlConverter.java View File

@@ -18,6 +18,7 @@ package org.apache.poi.hssf.converter;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
@@ -106,7 +107,7 @@ public class ExcelToHtmlConverter extends AbstractExcelConverter
* Converts Excel file (97-2007) into HTML file.
*
* @param xlsFile
* file to process
* workbook file to process
* @return DOM representation of result HTML
* @throws IOException
* @throws ParserConfigurationException
@@ -114,12 +115,48 @@ public class ExcelToHtmlConverter extends AbstractExcelConverter
public static Document process( File xlsFile ) throws IOException, ParserConfigurationException
{
final HSSFWorkbook workbook = ExcelToHtmlUtils.loadXls( xlsFile );
try {
return ExcelToHtmlConverter.process( workbook );
} finally {
workbook.close();
}
}

/**
* Converts Excel file (97-2007) into HTML file.
*
* @param xlsFile
* workbook stream to process
* @return DOM representation of result HTML
* @throws IOException
* @throws ParserConfigurationException
*/
public static Document process( InputStream xlsStream ) throws IOException, ParserConfigurationException
{
final HSSFWorkbook workbook = new HSSFWorkbook( xlsStream );
try {
return ExcelToHtmlConverter.process( workbook );
} finally {
workbook.close();
}
}

/**
* Converts Excel file (97-2007) into HTML file.
*
* @param xlsFile
* workbook instance to process
* @return DOM representation of result HTML
* @throws IOException
* @throws ParserConfigurationException
*/
public static Document process( HSSFWorkbook workbook ) throws IOException, ParserConfigurationException
{
ExcelToHtmlConverter excelToHtmlConverter = new ExcelToHtmlConverter(
XMLHelper.getDocumentBuilderFactory().newDocumentBuilder()
.newDocument() );
excelToHtmlConverter.processWorkbook( workbook );
Document doc = excelToHtmlConverter.getDocument();
workbook.close();
return doc;
}


Loading…
Cancel
Save