打开并立即关闭使用Apache POI XSSF创建的xlsx文件后,系统会提示我保存未保存的更改。据我所知,这种情况正在发生,因为我在xlsx文件中使用了公式。
根据javadoc,应该通过设置XSSFWorkbook.setForceFormulaRecalculation(true)
来绕过
但是,这并没有解决问题。
我还尝试在保存文件之前手动重新计算公式,但没有成功。
SSCCE:
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFFormulaEvaluator;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class XSSFExample {
public static void main(String[] args) {
// Create workbook and sheet
Workbook wb = new XSSFWorkbook();
Sheet sheet = wb.createSheet("Sheet 1");
// Create a row and put some cells in it.
Row row = sheet.createRow((short) 0);
row.createCell(0).setCellValue(5.0);
row.createCell(1).setCellValue(5.0);
row.createCell(2).setCellFormula("A1/B1");
// Write the output to a file
try (FileOutputStream fileOut = new FileOutputStream("XSSFExample.xlsx")) {
wb.setForceFormulaRecalculation(false);
System.out.println(wb.getForceFormulaRecalculation()); // prints "false"
XSSFFormulaEvaluator.evaluateAllFormulaCells((XSSFWorkbook) wb); // this doesn't seem to make any difference
wb.write(fileOut);
} catch (IOException ex) {
Logger.getLogger(XSSFExample.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
我可以做些什么来创建文件,并且在我第一次打开文件后没有提示保存它?
更新
如上所述here (https://poi.apache.org/spreadsheet/eval.html#recalculation)我还尝试了另一种方法来手动重新计算但没有成功。即使在保存,重新计算和保存为第二个文件后重新读取文件也不起作用。
更新2:
考虑到已接受的答案,我能够通过在上述SSCCE中添加以下代码行来解决问题:
(请注意,这只是一个“快速而肮脏”的尝试来解决问题。可能有很多改进)。
ZipFile zipFile = new ZipFile("XSSFExample.xlsx");
final ZipOutputStream zos = new ZipOutputStream(new FileOutputStream("XSSFExample_NoSave.xlsx"));
for (Enumeration e = zipFile.entries(); e.hasMoreElements();) {
ZipEntry entryIn = (ZipEntry) e.nextElement();
if (!entryIn.getName().equalsIgnoreCase("xl/workbook.xml")) {
zos.putNextEntry(entryIn);
InputStream is = zipFile.getInputStream(entryIn);
byte[] buf = new byte[1024];
int len;
while ((len = (is.read(buf))) > 0) {
zos.write(buf, 0, len);
}
} else {
zos.putNextEntry(new ZipEntry("xl/workbook.xml"));
InputStream is = zipFile.getInputStream(entryIn);
byte[] buf = new byte[1024];
int len;
while (is.read(buf) > 0) {
String s = new String(buf);
String searchFileVersion = "/relationships\"><workbookPr";
String replaceFileVersion = "/relationships\"><fileVersion appName=\"xl\" lastEdited=\"5\" lowestEdited=\"5\" rupBuild=\"9303\"/><workbookPr";
String searchCalcId = "<calcPr calcId=\"0\"/>";
String replaceCalcId = "<calcPr calcId=\"" + String.valueOf(Integer.MAX_VALUE) + "\"/>";
if (s.contains(searchFileVersion)) {
s = s.replaceAll(searchFileVersion, replaceFileVersion);
}
if (s.contains(searchCalcId)) {
s = s.replaceAll(searchCalcId, replaceCalcId);
}
len = s.trim().length();
buf = s.getBytes();
zos.write(buf, 0, (len < buf.length) ? len : buf.length);
}
}
zos.closeEntry();
}
zos.close();
答案 0 :(得分:4)
即使我面临同样的问题,但在添加以下内容之后,问题也已得到解决。
wb.getCreationHelper().createFormulaEvaluator().evaluateAll();
答案 1 :(得分:1)
问题可能在于MS Excel本身(一旦确定所有公式都已计算并保存在.xlsx文件中)。根据我的测试,Excel将在打开期间重新计算所有公式,如果它发现该文件是由旧版本的Excel或其他应用程序上次保存的(关键是版本号不匹配和/或低于当前版本打开文件的Excel)以保持良好的兼容性。
(使Excel认为.xlsx文件是由相同的Excel版本生成的,以避免重新计算)
Excel从位于.xlsx档案中的workbook.xml
目录中的xl
文件中读取所有文件版本信息(.xlsx只是一个压缩档案)。
workbook.xml文件可能如下所示:
<workbook xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
<workbookPr date1904="false"/>
<bookViews><workbookView activeTab="0"/></bookViews>
<sheets>
<sheet name="new sheet" r:id="rId3" sheetId="1"/>
</sheets>
<calcPr calcId="0"/>
</workbook>
Excel 2010生成的文件如下所示:
<workbook xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
<fileVersion appName="xl" lastEdited="5" lowestEdited="5" rupBuild="9303"/>
<workbookPr defaultThemeVersion="124226"/>
<bookViews><workbookView xWindow="630" yWindow="510" windowWidth="27495" windowHeight="14505"/></bookViews>
<sheets>
<sheet name="new sheet" sheetId="1" r:id="rId1"/>
</sheets>
<calcPr calcId="145621"/>
</workbook>
请注意,POI生成的文件中<fileVersion>
标记完全丢失,<calcPr>
标记{Excel}生成的文件中设置了calcId
的某个实际值。
我能够通过插入相关的<fileVersion>
标记并将calcId
设置为等于或大于生成的数字的数字来避免Excel 2010自动公式重新计算(以及恼人的“保存更改”对话框)由我当前的Excel版本到POI生成的workbook.xml
。
有关workbook.xml
格式的更多信息,请访问MSDN Open XML SDK documentation。