I want to send email with zip file attachment.. I m able to send pdf files without saving them on physical location using ByteArrayOutputStream. But when I try zip those file an
I think that you have not flushed and closed ZipOutputStream
. Try to call zos.flush(); zos.close()
. I hope this will help.
If not try to extract byte array from your ByteArrayOutputStream
, save it into file and open with zip-enable tool. It is just for debugging to be sure that your ZIP is OK and is not corrupted.