我正在尝试将已更改的xlsx文件保存到OutputStream。但是,我找到的唯一方法是使用弃用的方法SaveToZipFile:
public void contentReplace(OutputStream ac_os) {
SpreadsheetMLPackage lc_xlsxPackage = something;
try {
SaveToZipFile saveToZipFile = new SaveToZipFile(lc_xlsxPackage);
saveToZipFile.save(ac_os);
}
}
还有什么我可以使用的吗?类似于Docx4j.save()
但是对于xlsx文档?