这是获取内容的代码(如果内容为纯文本或html)。
我想知道如果邮件正文在xml中时如何处理内容?

MimeBodyPart mbp = (MimeBodyPart)part;
if (mbp.isMimeType("text/plain")) {
    body += mbp.getContent().toString();
}
else if (mbp.isMimeType("TEXT/HTML")) {
    body += mbp.getContent().toString();
}

最佳答案

MimeBodyPart mbp = (MimeBodyPart)part;
if (mbp.isMimeType("text/plain")) {
    body += mbp.getContent().toString();
} else if (mbp.isMimeType("TEXT/HTML")) {
    body += mbp.getContent().toString();
}else if(mbp.isMimeType("text/xml")) {
    body += mbp.getContent().toString();
}


这是你想要的吗?您能详细说明一下吗?

07-24 16:08