有几个相关的问题,但我找不到反映我的情况的问题。
我正在使用 SXSSFWorkbook 和 SXSSFSheet 对象用 Apache POI 写出一个 Excel“xlsx”文件。该文件的创建没有问题,并且在 LibreOffice 中可以正常打开,但是 Excel 在打开文件时会报错。
Excel 在“test-file.xlsx”中发现了不可读的内容。是否要恢复工作簿的内容?如果您信任此工作簿的来源,请单击“是”。
When "Yes" is selected...
Excel 能够通过修复或删除不可读的内容来打开文件。
删除的功能:来自 /xl/styles.xml 部分的格式(样式)
修复记录:来自 /xl/worksheets/sheet1.xml 部分的单元格信息
创建这个工作簿的代码很无聊,我没有设置任何样式或任何有趣的东西。我创建工作簿和一张工作表,然后将数据写入其中。
private Workbook createWorkbook(final String sheetName, final String[] headers) {
// create a new workbook and sheet
final SXSSFWorkbook workbook = new SXSSFWorkbook(500);
final SXSSFSheet sheet = (SXSSFSheet) workbook.createSheet(sheetName);
// create and fill our header row
final Row row = sheet.createRow(0);
for (int index = 0; index < headers.length; index++) {
row.createCell(index).setCellValue(headers[index]);
}
return workbook;
}
写数据同样无趣。
private void exportPersonWorkbook(final Workbook workbook, final String sheetName, final PersonExport personExport) {
// list of data for this new row
final List rowValues = new ArrayList();
// person id
rowValues.add(personExport.getContactId());
// dec region number
rowValues.add(personExport.getRegion());
// birth date
rowValues.add(personExport.getBirthDate());
// day phone
rowValues.add(personExport.getMailingContactInfoBusinessPhone());
...and so on...
writeRowToWorkbook(workbook, sheetName, rowValues);
}
private void writeRowToWorkbook(final Workbook workbook, final String sheetName, final List values) {
// helper and our date format
final CreationHelper creationHelper = workbook.getCreationHelper();
final CellStyle dateStyle = workbook.createCellStyle();
dateStyle.setDataFormat(creationHelper.createDataFormat().getFormat(
PesticidesDomainConstants.DEFAULT_DATE_PATTERN));
// get a handle on our worksheet
final Sheet sheet = workbook.getSheet(sheetName);
// create our new row
final Row row = sheet.createRow(sheet.getLastRowNum() + 1);
// write all of our data to the row
int column = 0;
final Iterator iterator = values.iterator();
while (iterator.hasNext()) {
final Object value = iterator.next();
if (value != null) {
// create our new cell
final Cell cell = row.createCell(column);
// Excel cells can only handle certain data types
if (value instanceof String) {
cell.setCellValue((String) value);
} else if (value instanceof Integer) {
cell.setCellValue((Integer) value);
} else if (value instanceof Double) {
cell.setCellValue((Double) value);
} else if (value instanceof Date) {
cell.setCellValue((Date) value);
// set the cell format for dates
cell.setCellStyle(dateStyle);
} else {
// last ditch effort to populate cell
cell.setCellValue(value.toString());
}
}
// increment our column counter
column++;
}
}
该文件在打开时看起来几乎正确,我看不出有什么不同。有人使用 Apache POI 看到过这个问题吗?我希望有一些简单的东西,比如一个额外的标志或设置来完成这项工作。任何帮助将不胜感激!