I\'m facing org.apache.poi.openxml4j.exceptions.OpenXML4JRuntimeException: Fail to save:an error occurs while saving the package : The part /docProps/app.xml fail to b
org.apache.poi.openxml4j.exceptions.OpenXML4JRuntimeException: Fail to save:an error occurs while saving the package : The part /docProps/app.xml fail to b
I had this problem today and fixed it already.
The problem is in putResultstoReport()
putResultstoReport()
You can't wb.write(fileOut); in your cycle.
wb.write(fileOut);
resolution:
first call putResultstoReport(); then wb.write(fileOut);
putResultstoReport();