我编写了一个方法,可以递归地将消息的多个BodyPart
's 的内容添加Multipart
到字符串中。我不知道为什么,但字符串中的第一个短语是null
- 为什么?
代码:
protected void dumpPart(Part p, Email email) throws MessagingException, IOException
{
if (p.isMimeType("text/plain"))
{
if (!p.getContent().toString().equals(null))
email.setBody((String)p.getContent());
}
else if (p.isMimeType("multipart/*"))
{
Multipart mp = (Multipart)p.getContent();
for (int x = 0; x < mp.getCount(); x++)
{
dumpPart(mp.getBodyPart(x), email);
}
}
}
输出:
nullWe did not answer protests to our Order 637 filing...