使用POI写入的自动刷新引用单元格

时间:2014-11-01 07:39:28

标签: java excel apache-poi

我有一张xlsx文件。
在细胞' A2'我提到了细胞' A1'

以下代码将数据写入单元格' A1'。

当我打开文档时,单元格' A2'不会更新单元格的值' A1'自动。
我需要点击手机单元' A2'然后按Enter键,然后我才看到新值。

打开文档时可以做什么,值会更新?

FileInputStream inputStream = null;
FileOutputStream outputStream = null;
XSSFWorkbook book = null;

String path = "c://temp//doc.xlsx";

inputStream = new FileInputStream(path);

book = new XSSFWorkbook(inputStream);

XSSFSheet sheet = book.getSheetAt(0);
XSSFRow row = sheet.getRow(0);

row.createCell(0).setCellValue("VALUE");

outputStream = new FileOutputStream(path);

book.write(outputStream);
outputStream.close();

0 个答案:

没有答案