繁体   English   中英

使用Java提取嵌入式电子邮件附件

[英]Extract inline email attachment with Java

我正在使用以下Java代码尝试提取电子邮件附件:

private static List<File> extractAttachment(Message message) {
    List<File> attachments = new ArrayList<File>();
    try {
        Multipart multipart = (Multipart) message.getContent();

        for (int i = 0; i < multipart.getCount(); i++) {
        BodyPart bodyPart = multipart.getBodyPart(i);
        System.out.println("bodyPart.getDisposition(): " + bodyPart.getDisposition());
        if (!Part.ATTACHMENT.equalsIgnoreCase(bodyPart.getDisposition())) {
            continue; // dealing with attachments only
        }
        InputStream is = bodyPart.getInputStream();
        String filePath = "/tmp/" + bodyPart.getFileName();
        System.out.println("Saving: " + filePath);
        File f = new File(filePath);
        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);
        }
    } catch (IOException | MessagingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return attachments;
 }

但是,我总是得到bodyPart.getDisposition(): null 有什么线索我应该如何提取内联附件?

谢谢

PS:我在Mac上使用Apple Mail客户端发送带有附件的测试电子邮件。 但是,电子邮件客户端不应该受到关注。

我知道了,实际上我必须进行一些“递归”并检查嵌套的内容并检查Part.INLINE.equalsIgnoreCase(bodyPart.getDisposition()

下面是代码,认为对某人有用:

private static List<File> extractAttachment(Multipart multipart) {
    List<File> attachments = new ArrayList<File>();
    try {

        for (int i = 0; i < multipart.getCount(); i++) {
        BodyPart bodyPart = multipart.getBodyPart(i);

        if (bodyPart.getContent() instanceof Multipart) {
            // part-within-a-part, do some recursion...
            extractAttachment((Multipart) bodyPart.getContent());
        }

        System.out.println("bodyPart.getDisposition(): " + bodyPart.getDisposition());
        if (!Part.INLINE.equalsIgnoreCase(bodyPart.getDisposition())) {
            continue; // dealing with attachments only
        }

        InputStream is = bodyPart.getInputStream();
        String filePath = "/tmp/" + bodyPart.getFileName();
        System.out.println("Saving: " + filePath);
        File f = new File(filePath);
        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);
        }
    } catch (IOException | MessagingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return attachments;
    }

当从Mac发送的邮件没有正文内容时,我遇到了类似的问题,但附件在遍历初始邮件内容时未显示附件,因此也必须递归查找。

我在下面发布了对我有用的内容。

private Map<String, String> extractAttachments(Multipart multiPart, Map<String, String> attachmentAndName) {
    try {
        for (int i = 0; i < multiPart.getCount(); i++) {
            BodyPart part = multiPart.getBodyPart(i);
            if (part.getContent() instanceof Multipart) {
                attachmentAndName = extractAttachments((Multipart) part.getContent(), attachmentAndName);
            } else if (part instanceof MimeBodyPart) {
                MimeBodyPart mimeBodyPart = (MimeBodyPart) part;
                String fileName = createUniqueFileName(mimeBodyPart.getFileName());
                if (Part.ATTACHMENT.equalsIgnoreCase(mimeBodyPart.getDisposition())) {
                    String attachmentAsString = IOUtils.toString(mimeBodyPart.getInputStream(), StandardCharsets.UTF_8);
                    attachmentAndName.put(fileName, attachmentAsString);
                    if (SAVE_ATTACHMENTS_LOCALLY) {
                        saveFile(mimeBodyPart, fileName);
                    }
                }
            }
        }
    } catch (IOException | MessagingException e) {
        logger.error("Failed to process attachment. Continuing to process other message parts in search of attachments...");
    }
    return attachmentAndName;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM