我需要使用java代码从Outlook的收件箱中读取主题,消息。是否有相同的示例代码/想法,请帮助获得相同的。
我使用StackOverflow进行搜索,它使用C#提供代码。
我也检查了Javamail,但我没有找到任何关于Outlook的信息。
答案 0 :(得分:0)
如果您想使用Java读取.pst文件可能不是一个好选择。对我来说,如果您有服务器详细信息,直接从服务器获取邮件会更有意义。
我从Google获得此link - “阅读pst文件”。
答案 1 :(得分:0)
当您说“Outlook的收件箱”时,您是否认为数据Outlook存储在您的本地计算机上?或者您的意思是远程邮件服务器中收件箱邮件文件夹中的数据,可能是Exchange?如果是后者,则可以使用JavaMail执行此操作,但必须将Exchange服务器配置为允许IMAP访问。
答案 2 :(得分:0)
这就是我所做的。
/**
* Connects to email server with credentials provided to read from a given
* folder of the email application
*
* @param username Email username (e.g. janedoe@email.com)
* @param password Email password
* @param server Email server (e.g. smtp.email.com)
* @param INBOX Folder in email application to interact with
* @throws Exception
*/
public OutlookEmail() throws Exception {
Properties props = System.getProperties();
props.setProperty("mail.store.protocol", "imap");
props.setProperty("mail.imap.ssl.enable", "true");
props.setProperty("mail.imaps.partialfetch", "false");
props.put("mail.mime.base64.ignoreerrors", "true");
Session mailSession = Session.getInstance(props);
mailSession.setDebug(true);
Store store = mailSession.getStore("imap");
store.connect("outlook.office365.com", "YOUREMAILADDRESS", "YOUR PASSWORD");
Folder folder = store.getFolder("INBOX");
folder.open(Folder.READ_ONLY);
System.out.println("Total Message:" + folder.getMessageCount());
System.out.println("Unread Message:" + folder.getUnreadMessageCount());
messages = folder.getMessages();
for (Message mail : messages) {
System.out.println("*********************************");
System.out.println("MESSAGE : \n");
System.out.println("Subject: " + mail.getSubject());
System.out.println("From: " + mail.getFrom()[0]);
System.out.println("To: " + mail.getAllRecipients()[0]);
System.out.println("Date: " + mail.getReceivedDate());
System.out.println("Size: " + mail.getSize());
System.out.println("Flags: " + mail.getFlags());
System.out.println("ContentType: " + mail.getContentType());
System.out.println("Body: \n" + getEmailBody(mail));
System.out.println("*******************************");
}
}
**从config和Pass凭证中读取,uname,pwd作为参数并被屏蔽。