Immediate free file output stream
Brought to you by:
khurshid
in com.aurigalogic.aurigadoc.util.MHTCompiler.createArchive
maybe need replace code:
msg.writeTo(new FileOutputStream(outputFile));
to:
FileOutputStream os = new FileOutputStream(outputFile);
msg.writeTo(os);
os.close();