Java:使用Javamail阅读电子邮件

时间:2015-05-19 07:58:26

标签: java javamail

我一直致力于一个程序,假设使用javamail来读取收件箱,如果电子邮件包含特定的字符串,则应该打开它。

首先,这是我第一次尝试使用这个javamail api - 我很确定我的属性都搞砸了 - 有人能给我提示正确设置javamail的属性吗?

其次,似乎我可以通过API连接,但如果我尝试搜索主题并且主题为空,我会得到一个空指针异常 - 如果我不尝试匹配主题" Ordretest",我没有得到nullpointer - 任何提示都会有很大的帮助:)

package vildereMail;

import java.util.Properties;

import javax.mail.Address;
import javax.mail.BodyPart;
import javax.mail.Folder;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.Session;
import javax.mail.Store;
import javax.mail.internet.InternetAddress;
import javax.mail.search.FromTerm;
import javax.mail.search.SearchTerm;
import javax.mail.search.SubjectTerm;

public class vildereMail {


    public boolean match(Message message) {
        try {
            if (message.getSubject().contains("Ordretest")) {
                System.out.println("match found");
                return true;
            }
        } catch (MessagingException ex) {
            ex.printStackTrace();
        }
        return false;
    };
        public static void main(String[] args) {
            Properties props = System.getProperties();
        props.setProperty("mail.store.protocol", "imaps");
            props.put("mail.imap-mail.outlook.com.ssl.enable", "true");
            props.put("mail.pop3.host", "outlook.com");
            props.put("mail.pop3.port", "995");
            props.put("mail.pop3.starttls.enable", "true");
            try {
                Session session = Session.getInstance(props, null);
                Store store = session.getStore();
                store.connect("imap-mail.outlook.com", "myEmail@live.dk", "MyPassword");
                session.setDebug(true);
                Folder inbox = store.getFolder("INBOX");
                inbox.open(Folder.READ_ONLY);


                SearchTerm sender = new FromTerm(new InternetAddress("myMail@live.dk"));

                Message[] messages = inbox.search(sender);
                System.out.println(messages);

                for (int i = 0 ; i < messages.length ; i++) {

                    System.out.println(messages[i].getSubject());
                    if (messages[i].getSubject().equals(null)) {
                        System.out.println("null in subject");
                        break;
                    }
                    else if (messages[i].getSubject().contains("Ordretest")){
                        System.out.println("1 match found");
                    }
                    else {
                    System.out.println("no match");
                    }
                }
                System.out.println("no more messages");
                store.close();

            } catch (Exception mex) {
                mex.printStackTrace();
            }
        }
    }

2 个答案:

答案 0 :(得分:1)

在不知道您获得NPE(Null Pointer Exception)的哪一行,我猜它会出现在这里:

if (messages[i].getSubject().equals(null)) 

如果getSubject()返回null并且您尝试执行.equals(),它将抛出一个NPE(因为您尝试调用方法)。 因此,尝试将其重写为(假设您的消息对象不能为null):

if (messages[i].getSubject() == null) 

答案 1 :(得分:-1)

从哪里开始...

您找到了JavaMail FAQ吗?

你可以摆脱所有的属性设置,因为他们没有做任何事情,因为你正在使用&#34; imaps&#34;协议,而不是&#34; pop3&#34;协议

正如其他人所解释的那样,getSubject方法可能会返回null,因此您需要检查它。