जवाबों:
अपवाद से निपटने के बिना, लेकिन यहाँ जाता है:
List<File> attachments = new ArrayList<File>();
for (Message message : temp) {
Multipart multipart = (Multipart) message.getContent();
for (int i = 0; i < multipart.getCount(); i++) {
BodyPart bodyPart = multipart.getBodyPart(i);
if(!Part.ATTACHMENT.equalsIgnoreCase(bodyPart.getDisposition()) &&
StringUtils.isBlank(bodyPart.getFileName())) {
continue; // dealing with attachments only
}
InputStream is = bodyPart.getInputStream();
// -- EDIT -- SECURITY ISSUE --
// do not do this in production code -- a malicious email can easily contain this filename: "../etc/passwd", or any other path: They can overwrite _ANY_ file on the system that this code has write access to!
// File f = new File("/tmp/" + bodyPart.getFileName());
FileOutputStream fos = new FileOutputStream(f);
byte[] buf = new byte[4096];
int bytesRead;
while((bytesRead = is.read(buf))!=-1) {
fos.write(buf, 0, bytesRead);
}
fos.close();
attachments.add(f);
}
}
प्रश्न बहुत पुराना है, लेकिन शायद यह किसी की मदद करेगा। मैं डेविड राबिनोवित्ज़ के उत्तर का विस्तार करना चाहूंगा।
if(!Part.ATTACHMENT.equalsIgnoreCase(bodyPart.getDisposition()))
सभी अटैचमेंट को वापस नहीं करना चाहिए जैसा कि आप उम्मीद करते हैं, क्योंकि आपके पास मेल हो सकता है जहां मिश्रित भाग बिना परिभाषित स्वभाव के है।
----boundary_328630_1e15ac03-e817-4763-af99-d4b23cfdb600
Content-Type: application/octet-stream;
name="00000000009661222736_236225959_20130731-7.txt"
Content-Transfer-Encoding: base64
तो इस मामले में, आप फ़ाइल नाम के लिए भी जाँच कर सकते हैं। ऐशे ही:
if (!Part.ATTACHMENT.equalsIgnoreCase(part.getDisposition()) && StringUtils.isBlank(part.getFileName())) {...}
संपादित करें
उपर्युक्त स्थिति के अनुसार पूरे वर्किंग कोड का उपयोग किया जाता है .. क्योंकि प्रत्येक भाग एक और भाग को संलग्न कर सकता है और अनुलग्नक को नेस्टेड किया जाना चाहिए, सभी भागों के माध्यम से पुनरावृत्ति का उपयोग किया जाता है
public List<InputStream> getAttachments(Message message) throws Exception {
Object content = message.getContent();
if (content instanceof String)
return null;
if (content instanceof Multipart) {
Multipart multipart = (Multipart) content;
List<InputStream> result = new ArrayList<InputStream>();
for (int i = 0; i < multipart.getCount(); i++) {
result.addAll(getAttachments(multipart.getBodyPart(i)));
}
return result;
}
return null;
}
private List<InputStream> getAttachments(BodyPart part) throws Exception {
List<InputStream> result = new ArrayList<InputStream>();
Object content = part.getContent();
if (content instanceof InputStream || content instanceof String) {
if (Part.ATTACHMENT.equalsIgnoreCase(part.getDisposition()) || StringUtils.isNotBlank(part.getFileName())) {
result.add(part.getInputStream());
return result;
} else {
return new ArrayList<InputStream>();
}
}
if (content instanceof Multipart) {
Multipart multipart = (Multipart) content;
for (int i = 0; i < multipart.getCount(); i++) {
BodyPart bodyPart = multipart.getBodyPart(i);
result.addAll(getAttachments(bodyPart));
}
}
return result;
}
null
। क्या वो सही है?
उस कोड के लिए कुछ समय बचाने के लिए जहां आप अनुलग्नक फ़ाइल सहेजते हैं:
javax मेल संस्करण 1.4 और उसके बाद, आप कह सकते हैं
// SECURITY LEAK - do not do this! Do not trust the 'getFileName' input. Imagine it is: "../etc/passwd", for example.
// bodyPart.saveFile("/tmp/" + bodyPart.getFileName());
के बजाय
InputStream is = bodyPart.getInputStream();
File f = new File("/tmp/" + bodyPart.getFileName());
FileOutputStream fos = new FileOutputStream(f);
byte[] buf = new byte[4096];
int bytesRead;
while((bytesRead = is.read(buf))!=-1) {
fos.write(buf, 0, bytesRead);
}
fos.close();
bodyPart
पहले परिवर्तित किया जाना चाहिए MimeBodyPart
, जैसे:((MimeBodyPart) bodyPart).saveFile("/tmp/" + bodyPart.getFileName());
आप बस Apache Commons Mail API MimeMessageParser - getAttachmentList () कॉमन्स IO और कॉमन्स लैंग के साथ उपयोग कर सकते हैं ।
MimeMessageParser parser = ....
parser.parse();
for(DataSource dataSource : parser.getAttachmentList()) {
if (StringUtils.isNotBlank(dataSource.getName())) {}
//use apache commons IOUtils to save attachments
IOUtils.copy(dataSource.getInputStream(), ..dataSource.getName()...)
} else {
//handle how you would want attachments without file names
//ex. mails within emails have no file name
}
}