gpt4 book ai didi

java - 无法使用Java读取电子邮件内容

转载 作者:行者123 更新时间:2023-12-01 11:14:20 25 4
gpt4 key购买 nike

Properties props = new Properties();
props.setProperty("mail.store.protocol", "imaps");
try {
Session session = Session.getInstance(props, null);
Store store = session.getStore();
store.connect("imap.gmail.com", "xxx", "xxx");
Folder inbox = store.getFolder("INBOX");
inbox.open(Folder.READ_ONLY);
Message[] messages = inbox.getMessages();
for (int i = messages.length;i>=0; i--) {
Message message =messages[i];

System.out.println("Text: " + message.getContent().toString());
}

我能够阅读电子邮件,并且我正在尝试获取每封电子邮件的电子邮件内容。但是 getContent 方法返回垃圾值,例如:(Text:javax.mail.internet.MimeMultipart@17ff24f)。如何获取完整的电子邮件内容。请帮忙。

最佳答案

message.getContent() 的调用不会返回“垃圾值”,它只是返回无法直接转换为 String 值的内容。

那是因为它是类 MimeMultipart 的对象。这意味着您正在阅读的电子邮件由多个“部分”组成。您可以将 message.getContent() 的结果向下转换为 MimeMultipart 变量并对其进行分析:

MimeMultipart multipart = (MimeMultipart) message.getContent();
System.out.println("This message consists of " + multipart.getCount() + " parts");
for (int i = 0; i < multipart.getCount(); i++) {
// Note we're downcasting here, MimeBodyPart is the only subclass
// of BodyPart available in the Java EE spec.
MimeBodyPart bodyPart = (MimeBodyPart) multipart.getBodyPart(i);

System.out.println("Part " + i + " has type " + bodyPart.getContentType());
System.out.println("Part " + i " + has filename " + bodyPart.getFileName()); // if it was an attachment
// So on, so forth.
}

请参阅Javadoc of MimeBodyPart有关如何分析消息各部分的详细信息。

关于java - 无法使用Java读取电子邮件内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32004684/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com