如何摆脱使用 Apache POI XSSF 创建的 xlsx 文件的 "Save changes?" 提示
How to get rid of "Save changes?" prompt on xlsx-files created with Apache POI XSSF
打开并立即关闭使用 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) 我还尝试了另一种方法来手动重新计算但没有成功。即使在保存、重新计算和另存为第二个文件后重新读取文件也不起作用。
更新二:
考虑到已接受的答案,我能够通过在上面的 SSCCE 中添加以下代码行来解决问题:
(请注意,这只是 "quick and dirty" 解决问题的尝试。可能还有很多改进的可能)。
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();
问题
问题可能出在 MS Excel 本身(一旦您确定所有公式都已计算并保存在 .xlsx 文件中)。根据我的测试,如果 Excel 发现文件最后是由旧版本的 Excel 或其他应用程序保存的(关键是版本号不匹配),则 Excel 将在打开过程中重新计算所有公式and/or 低于当前版本 Excel 打开文件)以保持良好的兼容性。
解决方案
(让Excel认为.xlsx文件是由同一个Excel版本生成的,以避免重新计算)
Excel 从位于 .xlsx 存档内 xl
目录中的 workbook.xml
文件读取所有文件版本控制信息(.xlsx 只是一个压缩存档)。
workbook.xml Apache POI 生成的文件可能如下所示:
<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>
注意 <fileVersion>
标签在 POI 生成的文件中完全丢失,<calcPr>
标签在 Excel 生成的文件中 calcId
设置为某个实际值。
我能够通过插入相关的 <fileVersion>
标签和设置 calcId
来避免 Excel 2010 自动公式重新计算(和烦人的 "Save changes" 对话框)等于或大于我当前版本 Excel 生成的数字到 POI 生成的 workbook.xml
。
有关 workbook.xml
格式的更多信息,请参见 MSDN Open XML SDK documentation。
即使我也遇到了同样的问题,但在添加以下行后,问题已得到解决。
wb.getCreationHelper().createFormulaEvaluator().evaluateAll();
我正在使用 Apache POI 5.2.2
,打开只有一个 sheet 的 template.xlsx
文件,克隆 1..n 新的 sheets,写入单元格,删除第一个模板 sheet, 保存 .xlsx 文件。
在 Excel 中打开文件并关闭会给出 Save changes?
提示,即使什么都不做,没有 @formula 单元格,没有外部链接或工作簿中的对象。我意识到如果作品数量 sheets 与原始文件不同,则会显示提示。
所有 sheet 的 GUID xl/worksheets/sheet1.xml@xr:uid={00000000-0001-0000-0000-000000000000}
为零。
文本编辑 sheetX.xml@xr:uid
值到 {11111111-1111-1111-1111-112233440001}, {11111111-1111-1111-1111-112233440002}, {11111111-1111-1111-1111-112233440003}, ..
唯一 guid 解决了一个问题。
使用@sobrino 的回答,这是修改后的 unzip-zip 修复。
public void fixFile(File inputFile, File outputFile) throws IOException {
int count=0;
ZipFile zipFile = new ZipFile(inputFile);
final ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(outputFile));
for (Enumeration<? extends ZipEntry> en = zipFile.entries(); en.hasMoreElements();) {
ZipEntry entryIn = (ZipEntry)en.nextElement();
String name = entryIn.getName();
if(!( name.startsWith("xl/worksheets/") && name.endsWith(".xml")
&& name.indexOf('/', 14)<0 )) {
zos.putNextEntry(entryIn);
InputStream is = zipFile.getInputStream(entryIn);
byte[] buf = new byte[2*1024];
int len;
while ((len = (is.read(buf))) > 0) {
zos.write(buf, 0, len);
}
} else {
// fix xr:uid="{00000000-0001-0000-0000-000000000000}" zero GUID to avoid "save changes" prompt
// <worksheet ... xr:uid="{11111111-1111-1111-1111-112233440001" ...
count++;
zos.putNextEntry(new ZipEntry(name));
InputStream is = zipFile.getInputStream(entryIn);
byte[] buf = new byte[2*1024];
int len;
boolean firstRead=true;
while ( (len=is.read(buf)) > 0) {
if(firstRead) {
firstRead=false;
String sData=new String(buf,0,len, "UTF-8");
int delimS=sData.indexOf("xr:uid=\"");
int delimE=sData.indexOf('"', delimS+8);
int delimG=sData.indexOf("-000000000000}", delimS+8);
if(delimG>0 && delimG<=delimE && delimS>0) {
// found zero GUID, replace value
sData=sData.substring(0, delimS+8)
+ String.format("{11111111-1111-1111-1111-11223344%04x}", count)
+ sData.substring(delimE);
zos.write(sData.getBytes("UTF-8"));
} else {
zos.write(buf, 0, len);
}
} else {
zos.write(buf, 0, len);
}
}
}
zos.closeEntry();
}
zos.close();
zipFile.close();
}
打开并立即关闭使用 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) 我还尝试了另一种方法来手动重新计算但没有成功。即使在保存、重新计算和另存为第二个文件后重新读取文件也不起作用。
更新二:
考虑到已接受的答案,我能够通过在上面的 SSCCE 中添加以下代码行来解决问题:
(请注意,这只是 "quick and dirty" 解决问题的尝试。可能还有很多改进的可能)。
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();
问题
问题可能出在 MS Excel 本身(一旦您确定所有公式都已计算并保存在 .xlsx 文件中)。根据我的测试,如果 Excel 发现文件最后是由旧版本的 Excel 或其他应用程序保存的(关键是版本号不匹配),则 Excel 将在打开过程中重新计算所有公式and/or 低于当前版本 Excel 打开文件)以保持良好的兼容性。
解决方案
(让Excel认为.xlsx文件是由同一个Excel版本生成的,以避免重新计算)
Excel 从位于 .xlsx 存档内 xl
目录中的 workbook.xml
文件读取所有文件版本控制信息(.xlsx 只是一个压缩存档)。
workbook.xml Apache POI 生成的文件可能如下所示:
<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>
注意 <fileVersion>
标签在 POI 生成的文件中完全丢失,<calcPr>
标签在 Excel 生成的文件中 calcId
设置为某个实际值。
我能够通过插入相关的 <fileVersion>
标签和设置 calcId
来避免 Excel 2010 自动公式重新计算(和烦人的 "Save changes" 对话框)等于或大于我当前版本 Excel 生成的数字到 POI 生成的 workbook.xml
。
有关 workbook.xml
格式的更多信息,请参见 MSDN Open XML SDK documentation。
即使我也遇到了同样的问题,但在添加以下行后,问题已得到解决。
wb.getCreationHelper().createFormulaEvaluator().evaluateAll();
我正在使用 Apache POI 5.2.2
,打开只有一个 sheet 的 template.xlsx
文件,克隆 1..n 新的 sheets,写入单元格,删除第一个模板 sheet, 保存 .xlsx 文件。
在 Excel 中打开文件并关闭会给出 Save changes?
提示,即使什么都不做,没有 @formula 单元格,没有外部链接或工作簿中的对象。我意识到如果作品数量 sheets 与原始文件不同,则会显示提示。
所有 sheet 的 GUID xl/worksheets/sheet1.xml@xr:uid={00000000-0001-0000-0000-000000000000}
为零。
文本编辑 sheetX.xml@xr:uid
值到 {11111111-1111-1111-1111-112233440001}, {11111111-1111-1111-1111-112233440002}, {11111111-1111-1111-1111-112233440003}, ..
唯一 guid 解决了一个问题。
使用@sobrino 的回答,这是修改后的 unzip-zip 修复。
public void fixFile(File inputFile, File outputFile) throws IOException {
int count=0;
ZipFile zipFile = new ZipFile(inputFile);
final ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(outputFile));
for (Enumeration<? extends ZipEntry> en = zipFile.entries(); en.hasMoreElements();) {
ZipEntry entryIn = (ZipEntry)en.nextElement();
String name = entryIn.getName();
if(!( name.startsWith("xl/worksheets/") && name.endsWith(".xml")
&& name.indexOf('/', 14)<0 )) {
zos.putNextEntry(entryIn);
InputStream is = zipFile.getInputStream(entryIn);
byte[] buf = new byte[2*1024];
int len;
while ((len = (is.read(buf))) > 0) {
zos.write(buf, 0, len);
}
} else {
// fix xr:uid="{00000000-0001-0000-0000-000000000000}" zero GUID to avoid "save changes" prompt
// <worksheet ... xr:uid="{11111111-1111-1111-1111-112233440001" ...
count++;
zos.putNextEntry(new ZipEntry(name));
InputStream is = zipFile.getInputStream(entryIn);
byte[] buf = new byte[2*1024];
int len;
boolean firstRead=true;
while ( (len=is.read(buf)) > 0) {
if(firstRead) {
firstRead=false;
String sData=new String(buf,0,len, "UTF-8");
int delimS=sData.indexOf("xr:uid=\"");
int delimE=sData.indexOf('"', delimS+8);
int delimG=sData.indexOf("-000000000000}", delimS+8);
if(delimG>0 && delimG<=delimE && delimS>0) {
// found zero GUID, replace value
sData=sData.substring(0, delimS+8)
+ String.format("{11111111-1111-1111-1111-11223344%04x}", count)
+ sData.substring(delimE);
zos.write(sData.getBytes("UTF-8"));
} else {
zos.write(buf, 0, len);
}
} else {
zos.write(buf, 0, len);
}
}
}
zos.closeEntry();
}
zos.close();
zipFile.close();
}