I have assigned 5GB memory to JVM.
We load the template using
- Code: Select all
PresentationMLPackage ppt = (PresentationMLPackage) OpcPackage.load(new File(inputfilepath));
and save it finally using
- Code: Select all
File f1 = new File(outputfilepath);
ppt.save(f1);
We do not close or assign the ppt to null anywhere. Can you help us with the issue?