我有一个XLS模板,我正在通过Apache POI进行修改。
目的是修改模板,然后通过电子邮件发送修改后的xls电子表格。
一旦相应地修改了工作簿 - 是否有办法将此文件保存在内存中而不保存原始文件
POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream("template.xls"));
//do some processing
FileOutputStream fileOut = new FileOutputStream("template.xls");
wb.write();
fileOut.close();
我想让这个模板保持下一次运行。我会使用Apache freemarker,但无法看到xls支持。