我已经编写了用于编写 xlsm(Excel 2007)的 java 文件。
使用 Apache POI 库,编写 xlsx 文件是成功的。并且写入 xlsm 文件是成功的。但是由于打开xlsm文件时出错,我无法打开xlsm文件。
使用 Apache POI 库编写 xlsm 文件是否可行?
如果编写 xlsm 可行,请提供指南如何使用 Apache poi 库编写 xlsm 文件。
XSSFWorkbook workBook = new XSSFWorkbook();
XSSFSheet sheet = workBook.createSheet("Related_SRC");
String realName = "Test.xlsm";
File file = new File("C:\\sdpApp", realName);
try {
FileOutputStream fileOutput = new FileOutputStream(file);
workBook.write(fileOutput);
fileOutput.close();
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
谢谢