使用Java提取内联电子邮件附件

时间:2017-10-30 04:06:25

标签: java javamail email-attachments apple-mail

我正在使用以下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。有什么线索我应该如何提取内联附件?

由于

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

2 个答案:

答案 0 :(得分:0)

我明白了,确实我不得不进行一些“递归”并检查嵌套内容并检查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;
    }

答案 1 :(得分:0)

当我从没有正文内容的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;
}