0

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

收到邮件时,我无法查看从 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 来处理电子邮件正文数据。

非常感谢。

4

1 回答 1

0

我从下面共享的示例中得到了解决方案

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

但是,这个例子解释了如何在 body 和 store 中找到图像。我也在下面做了替换 src

` 模式 htmltag = Pattern.compile("] src=\"[^>] >(. ?)"); 模式链接 = Pattern.compile("src=\"[^>] \">"); 字符串 s1 = "";

    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);

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

于 2018-05-29T15:20:21.043 回答