收到邮件正文时,如何从多部分正文中获取图像

时间:2018-05-28 06:48:42

标签: ckeditor javamail mime-message mime-mail

我的应用程序实际上有邮件发送/接收功能来处理。

接收邮件时,我无法查看从Outlook发送的内嵌图像的图像。

有人可以帮助我如何捕捉图像并随时提供。

我有类似下面的java代码,

try (InputStream stream = new ByteArrayInputStream(Base64
            .getMimeDecoder().decode(mail))) {

        MimeMessage message = new MimeMessage(null, stream);
        Object messageContent = message.getContent();
        if (messageContent instanceof String) {
            body = (String) messageContent;
        } else if (messageContent instanceof MimeMultipart) {
            content = (MimeMultipart) messageContent;
            for (int i = 0; i < content.getCount(); i++) {
                BodyPart bodyPart = content.getBodyPart(i);
                String disposition = bodyPart.getDisposition();

                if (disposition == null
                        || disposition
                                .equalsIgnoreCase(Part.INLINE)) {
                    Object object = bodyPart.getContent();
                    if (object instanceof String) {
                        body = object.toString();
                    } else if (object instanceof MimeMultipart) {
                        MimeMultipart mimeMultipart = (MimeMultipart) object;
                        String plainBody = null;
                        String htmlBody = null;

                        for (int j = 0; j < mimeMultipart.getCount(); j++) {
                            BodyPart multipartBodyPart = mimeMultipart
                                    .getBodyPart(j);
                            String multipartDisposition = multipartBodyPart
                                    .getDisposition();
                            String multipartContentType = multipartBodyPart
                                    .getContentType();
                            if (multipartDisposition == null
                                    && multipartContentType != null) {
                                if (multipartContentType
                                        .contains(MediaType.TEXT_HTML)) {
                                    htmlBody = multipartBodyPart
                                            .getContent().toString();
                                } else if (multipartContentType
                                        .contains(MediaType.TEXT_PLAIN)) {
                                    plainBody = multipartBodyPart
                                            .getContent().toString();
                                }
                            }
                        }
                        if (htmlBody != null) {
                            body = htmlBody;
                        } else {
                            body = plainBody;
                        }
                    }
                }
            }
        }

客户端我使用CKEditor处理电子邮件正文数据。

非常感谢。

1 个答案:

答案 0 :(得分:0)

我从下面分享的示例中获得了一个解决方案

https://www.tutorialspoint.com/javamail_api/javamail_api_fetching_emails.htm

但是,这个例子解释了如何在身体和商店中找到图像。 我还在下面做了替换src

` 模式htmltag = Pattern.compile(&#34;] src = \&#34; [^&gt;] &gt;(。?)&#34;); 模式链接= Pattern.compile(&#34; src = \&#34; [^&gt;] \&#34;&gt;&#34;); 字符串s1 =&#34;&#34 ;;

    Matcher tagmatch = htmltag.matcher(s1);
    List<String> links = new ArrayList<String>();
    while (tagmatch.find()) {
        Matcher matcher = link.matcher(tagmatch.group());
        matcher.find();
        String link1 = matcher.group().replaceFirst("src=\"", "")
                .replaceFirst("\">", "")
                .replaceFirst("\"[\\s]?target=\"[a-zA-Z_0-9]*", "");
        links.add(link1);
        s1 = s1.replaceAll(link1, "C:\\//Initiatives_KM\\//image.jpg");            

    }

`

除此之外,我将进行Base64编码,以便我不需要存储在文件系统中。

encodedfileString = Base64.getEncoder().encodeToString(bArray);

通过所有这些我可以得出结论说,我得到了我的问题的解决方案。谢谢。