Source Code : Download attachments using Java Mail

 Download attachments using Java Mail    

List attachments =newArrayList();for(Message message : temp){Multipart multipart =(Multipart) message.getContent();// System.out.println(multipart.getCount());for(int i =0; i < multipart.getCount(); i++){BodyPart bodyPart = multipart.getBodyPart(i);if(!Part.ATTACHMENT.equalsIgnoreCase(bodyPart.getDisposition())&&!StringUtils.isNotBlank(bodyPart.getFileName())){continue;// dealing with attachments only}InputStream is = bodyPart.getInputStream();File f =newFile("/tmp/"+ bodyPart.getFileName());FileOutputStream fos =newFileOutputStream(f);byte[] buf =newbyte[4096];int bytesRead;while((bytesRead = is.read(buf))!=-1){ fos.write(buf,0, bytesRead);} fos.close(); attachments.add(f);}