我正在尝试使用apache POI使用primefaces和java在现有的excel工作簿中创建一个新工作表,但到目前为止还没有成功。谁能告诉我它是如何完成的? 我能够为单张
做到这一点下面的代码我写的是在一个xls文件中创建多个工作表,其中我给出了条件,它没有大于65535的行创建新工作表并迭代它,但它显示错误
警告:允许范围外的行号(65536)无效(0..65535) java.lang.IllegalArgumentException:允许范围外的行号(65536)无效(0..65535)
我的代码是
public void postProcessXLS(Object document) {
HSSFWorkbook wb = (HSSFWorkbook) document;
HSSFSheet sheet = wb.getSheetAt(0);
HSSFFont font = wb.createFont();
font.setFontName(HSSFFont.FONT_ARIAL);
Iterator rowIterator = sheet.rowIterator();
HSSFCellStyle cellStyle = wb.createCellStyle();
cellStyle.setWrapText(false);
cellStyle.setAlignment(HSSFCellStyle.ALIGN_GENERAL);
cellStyle.setFont(font);
System.out.println("Row number:"+sheet.getLastRowNum());
while (rowIterator.hasNext())
{
System.out.println("Row number:"+sheet.getLastRowNum());
//sheet.rowIterator().next().getRowNum();
if(sheet.getLastRowNum() >= 65535)
{
String sheetName = "";
for(int i=0;i<searchResults.size();i++)
{
sheetName = "Document-" + i;
HSSFSheet mySheet = wb.createSheet(sheetName);
HSSFRow hssfRow = (HSSFRow) rowIterator.next();
Iterator iterator = hssfRow.cellIterator();
while (iterator.hasNext())
{
HSSFCell hssfCell = (HSSFCell) iterator.next();
hssfCell.setCellStyle(cellStyle);
}
}
}
}
}
和我的xhtml
<h:commandLink>
<p:graphicImage value="resources/images/excel.png" />
<p:dataExporter type="xls" target="nmeadata"
postProcessor="#{decodeNMEAMessageAction.postProcessNmeaXLS}"
fileName="decoded_all_nmeadata" />
</h:commandLink>
<h:commandLink>
<p:graphicImage value="resources/images/excel.png" />
<p:dataExporter type="xls" target="nmeadata"
postProcessor="#{decodeNMEAMessageAction.postProcessNmeaXLS}"
fileName="decoded_page_nmeadata" pageOnly="true" />
</h:commandLink>
是否可以使用primeface将数据导出到多个工作表。 其他明智的请告诉我如何使用servlet来完成。
答案 0 :(得分:3)
而不是
HSSFSheet sheet = wb.getSheetAt(0);
HSSFSheet sheet = wb.createSheet();
基本上你想要的是createSheet - &gt; createRow - &gt; createCell - &gt; serCellValue
Javadocs很棒
http://poi.apache.org/apidocs/org/apache/poi/hssf/usermodel/package-summary.html