我将 mime4j jar 添加到我的 Android 项目中,但是对于这段代码,Eclipse 不允许编写。我的意思是没有属性或其他东西属于 mime4j jar。
public static Part findFirstPartByMimeType(Part part, String mimeType)
throws MessagingException {
if (part.getBody() instanceof Multipart) { // It says there is no getBody
Multipart multipart = (Multipart)part.getBody();
for (int i = 0, count = multipart.getCount(); i < count; i++) {
BodyPart bodyPart = multipart.getBodyPart(i);
Part ret = findFirstPartByMimeType(bodyPart, mimeType);
if (ret != null) {
return ret;
}
}
}
或者无论如何都可以使用 mime4j 接收邮件正文?