gpt4 book ai didi

java - 使用 java 写入 .xlsx。 BiffViewer 发生错误

转载 作者:行者123 更新时间:2023-12-01 05:00:39 25 4
gpt4 key购买 nike

我使用过的jar:dom4j poi-3.8.jar poi-ooxml-3.8.jar poi-ooxml-schemas-3.8.jar > xbean.jar

代码:

package org.capgemini.ui;

import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Date;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.Vector;

import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

public class XSSFWorkBookWriter {

public void writeWorkBook(Vector table) throws Exception {

XSSFWorkbook workBook = new XSSFWorkbook();
XSSFSheet sheet = workBook.createSheet();
table=new Vector();
table.add(new String("Howdy"));
table.add(new java.sql.Date(2012,06,20));
table.add(new Double(13.35D));
table.add(new String("Fine"));
table.add(new java.sql.Date(2012,06,20));
table.add(new Double(13.38D));

Iterator rows=table.iterator();
Enumeration rowsOfVector=table.elements();
int totalNoOfRows=table.size()/2;
int currentRow=0;
while (rows.hasNext () && currentRow<totalNoOfRows){
XSSFRow row = sheet.createRow(currentRow++);
for (int i = 0; i < 3; i++) {
XSSFCell cell=row.createCell(i);
Object val=rows.next();
if( val instanceof String){
cell.setCellValue(val.toString());
}
else if(val instanceof Date){
cell.setCellValue((java.sql.Date)val);
}
else if(val instanceof Double){
cell.setCellValue((Double)val);
}
}
}

FileOutputStream outPutStream = null;
try {
outPutStream = new FileOutputStream("D:/Try.xlsx");
workBook.write(outPutStream);
} catch (IOException e) {
e.printStackTrace();
} finally {
if (outPutStream != null) {
try {
outPutStream.flush();
outPutStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}

public static void main(String[] args) {
XSSFWorkBookWriter bookWriter=new XSSFWorkBookWriter();
try {
bookWriter.writeWorkBook(new Vector());
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

}

错误::

org.apache.poi.hssf.dev.BiffViewer$CommandParseException: Biff viewer needs a filename
at org.apache.poi.hssf.dev.BiffViewer$CommandArgs.parse(BiffViewer.java:333)
at org.apache.poi.hssf.dev.BiffViewer.main(BiffViewer.java:386)

最佳答案

BiffViewer 是 HSSF 的一部分,仅适用于较旧的 .xls 文件(基于 OLE2)。您正在使用 XSSF 生成 .xlsx 文件,这是一种不同的低级格式。

如果您确实想使用 BiffViewer(不知道为什么,它通常只用于调试,但仍然如此),那么您需要将 XSSF 代码更改为 HSSF 代码。否则,如果您确实打算使用 XSSF 生成 .xlsx 文件,则无法使用 HSSF 调试工具。如果您想了解 .xlsx 文件中的内容,请将其解压缩(.xlsx 是 xml 文件的 zip)并查看 XML。

关于java - 使用 java 写入 .xlsx。 BiffViewer 发生错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13439240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com