如何使用JavaMail处理多部分/备用邮件?

我编写了一个应用程序,该应用程序从收件箱中获取所有电子邮件,过滤包含特定字符串的电子邮件,然后将这些电子邮件放入ArrayList中。

将电子邮件放入列表后,我正在对所述电子邮件的主题和内容进行一些操作。这对于没有附件的电子邮件来说一切正常。但是,当我开始使用带有附件的电子邮件时,一切都不再像预期的那样工作了。

这是我的代码:

public void getInhoud(Message msg) throws IOException {
    try {
        cont = msg.getContent();
    } catch (MessagingException ex) {
        Logger.getLogger(ReadMailNew.class.getName()).log(Level.SEVERE, null, ex);
    }
    if (cont instanceof String) {
        String body = (String) cont;


    } else if (cont instanceof Multipart) {
        try {
            Multipart mp = (Multipart) msg.getContent();
            int mp_count = mp.getCount();
            for (int b = 0; b < 1; b++) {
                    dumpPart(mp.getBodyPart(b));
            }
        } catch (Exception ex) {
            System.out.println("Exception arise at get Content");
            ex.printStackTrace();
        }
    }
}

public void dumpPart(Part p) throws Exception {
    email = null;
    String contentType = p.getContentType();
    System.out.println("dumpPart" + contentType);
    InputStream is = p.getInputStream();
    if (!(is instanceof BufferedInputStream)) {
        is = new BufferedInputStream(is);
    }
    int c;
    final StringWriter sw = new StringWriter();
    while ((c = is.read()) != -1) {
        sw.write(c);
    }

    if (!sw.toString().contains("<div>")) {
        mpMessage = sw.toString();
        getReferentie(mpMessage);
    }
}

电子邮件中的内容存储在字符串中。

当我尝试阅读没有附件的邮件时,此代码工作正常。但是,如果我使用带有附件的电子邮件,则字符串还包含HTML代码甚至附件编码。最终,我想存储电子邮件的附件和内容,但我的首要任务是只获取文本,而无需任何HTML或附件编码。

现在我尝试了一种不同的方法来处理不同的部分:

public void getInhoud(Message msg) throws IOException {
    try {
        Object contt = msg.getContent();

        if (contt instanceof Multipart) {
            System.out.println("Met attachment");
            handleMultipart((Multipart) contt);
        } else {
            handlePart(msg);
            System.out.println("Zonder attachment");

        }
    } catch (MessagingException ex) {
        ex.printStackTrace();
    }
}

public static void handleMultipart(Multipart multipart)
        throws MessagingException, IOException {
    for (int i = 0, n = multipart.getCount(); i < n; i++) {
        handlePart(multipart.getBodyPart(i));
        System.out.println("Count "+n);
    }
}

 public static void handlePart(Part part)
        throws MessagingException, IOException {

    String disposition = part.getDisposition();
    String contentType = part.getContentType();
    if (disposition == null) { // When just body
        System.out.println("Null: " + contentType);
        // Check if plain
        if ((contentType.length() >= 10)
                && (contentType.toLowerCase().substring(
                0, 10).equals("text/plain"))) {
            part.writeTo(System.out);
        } else if ((contentType.length() >= 9)
                && (contentType.toLowerCase().substring(
                0, 9).equals("text/html"))) {
            part.writeTo(System.out);
        } else if ((contentType.length() >= 9)
                && (contentType.toLowerCase().substring(
                0, 9).equals("text/html"))) {
            System.out.println("Ook html gevonden");
            part.writeTo(System.out);
        }else{
            System.out.println("Other body: " + contentType);
            part.writeTo(System.out);
        }
    } else if (disposition.equalsIgnoreCase(Part.ATTACHMENT)) {
        System.out.println("Attachment: " + part.getFileName()
                + " : " + contentType);
    } else if (disposition.equalsIgnoreCase(Part.INLINE)) {
        System.out.println("Inline: "
                + part.getFileName()
                + " : " + contentType);
    } else {
        System.out.println("Other: " + disposition);
    }
}

这是从System.out.printlns

Null: multipart/alternative; boundary=047d7b6220720b499504ce3786d7
Other body: multipart/alternative; boundary=047d7b6220720b499504ce3786d7
Content-Type: multipart/alternative; boundary="047d7b6220720b499504ce3786d7"

--047d7b6220720b499504ce3786d7
Content-Type: text/plain; charset="ISO-8859-1"

'Text of the message here in normal text'

--047d7b6220720b499504ce3786d7
Content-Type: text/html; charset="ISO-8859-1"
Content-Transfer-Encoding: quoted-printable

'HTML code of the message'

此方法返回电子邮件的正常文本,同时返回邮件的 HTML 编码。我真的不明白为什么会发生这种情况,我已经谷歌了一下,但似乎没有其他人有这个问题。

任何帮助是值得赞赏的,

谢谢!


答案 1

我发现使用 JavaMail 库阅读电子邮件比预期的要困难得多。我不怪JavaMail API,而是责怪我对RFC-5322的糟糕理解 - 互联网电子邮件的官方定义。

作为一个思想实验:考虑一下电子邮件在现实世界中会变得多么复杂。可以在消息中“无限”嵌入消息。每封邮件本身可能有多个附件(二进制或人类可读的文本)。现在想象一下,解析后,JavaMail API中的这种结构变得多么复杂。

使用 JavaMail 遍历电子邮件时可能有帮助的一些提示:

  • Message并且两者都实现了 .BodyPartPart
  • MimeMessage并且两者都实现了 .MimeBodyPartMimePart
  • 如果可能,请将所有内容视为 或 。这将允许更轻松地构建通用遍历方法。PartMimePart

这些方法将有助于遍历:Part

  • String getContentType():从 MIME 类型开始。您可能会想将其视为MIME类型(带有一些黑客/剪切/匹配),但不要这样做。最好只在调试器内部使用此方法进行检查。
    • 奇怪的是,MIME类型不能直接提取。而是用于匹配。仔细阅读文档以了解强大的通配符,例如 .boolean isMimeType(String)"multipart/*"
  • Object getContent(): 可能是 :instanceof
    • Multipart-- 容器用于更多 sPart
      • 转换为 ,然后迭代为从零开始的索引,使用 和Multipartint getCount()BodyPart getBodyPart(int)
        • 注意:实现BodyPartPart
      • 根据我的经验,Microsoft Exchange 服务器定期提供正文文本的两个副本:纯文本和 HTML。
        • 要匹配纯文本,请尝试:Part.isMimeType("text/plain")
        • 要匹配 HTML,请尝试:Part.isMimeType("text/html")
    • Message(实现 ) -- 嵌入式或附加的电子邮件Part
    • String(只是正文文本 - 纯文本或HTML)
      • 请参阅上面有关 Microsoft Exchange 服务器的注释。
    • InputStream(可能是 BASE64 编码的附件)
  • String getDisposition():值可以是null
    • 如果 ,则调用以获取附件的原始字节。Part.ATTACHMENT.equalsIgnoreCase(getDisposition())getInputStream()

最后,我发现官方Javadocs排除了包中的所有内容(可能还有更多)。如果需要这些,请直接读取代码,或通过下载源代码并在项目的项目模块中运行来生成未过滤的 Javadocs。com.sun.mailmvn javadoc:javadocmail


推荐