我的应用程序实际上具有要处理的邮件发送/接收功能。
收到邮件时,我无法查看从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来处理电子邮件正文数据。
多谢。
我从下面分享的示例中得到了一个解决方案
https://www.tutorialspoint.com/javamail_api/javamail_api_fetching_emails.htm
但是,此示例解释了如何在正文和存储中查找图像。 我也在下面做了替换 src
' Pattern htmltag = Pattern.compile("]src=\"[^>]>(.?("(; Pattern link = 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);
有了所有这些,我可以得出结论,我得到了我的问题的解决方案。谢谢。