I am facing a Out of memory issue while downloading multipart file in Java
.
I am using HttpUrlConnection to download file getting issue in fist line:
ByteArrayDataSource ds = new ByteArrayDataSource(con.getInputStream(),
"multipart/mixed"); //Line 1
MimeMultipart multipart = new MimeMultipart(ds); //Line 2
javax.mail.BodyPart jsonPart = multipart.getBodyPart(1); //Line 3
javax.mail.BodyPart videoPart = multipart.getBodyPart(2); //Line 4
Multipart response contains 2 different file, one is simple text file and one is video file.
Whole multipart response size is more than 1 GB.