我正在使用javamail api创建一个搜索选项,该选项根据消息主题中的关键字搜索Gmail文件夹中的电子邮件 这是我正在使用的代码
public class EGMail7 {
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
final String m10 = "abc@gmail.com";
final String n10 = "12345";
string host = "smtp.gmail.com";
try
{
Properties pro1 = new Properties();
pro1.put("mail.smtp.host", "smtp.gmail.com");
pro1.put("mail.smtp.socketFactory.port", "465");
pro1.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
pro1.put("mail.smtp.auth", "true");
pro1.put("mail.smtp.port", "465");
Session session = Session.getDefaultInstance(pro1,
new javax.mail.Authenticator()
{
protected PasswordAuthentication getPasswordAuthentication()
{
return new PasswordAuthentication(m10,n10);
}
});
Store store = session.getStore("imaps");
store.connect(host, m10, n10);
Folder folderbox = store.getFolder("INBOX");
folderbox.open(Folder.READ_ONLY);
SearchTerm search = new SearchTerm(){
@Override
public boolean match(Message message) {
try
{
if(message.getSubject().contains([Keyword]))
{
return true;
}
}
catch(Exception e)
{
System.err.println(e.getMessage());
}
return false;
}
};
Message[] found = folderbox.search(search);
int length = found.length;
for(int i = 0;i<found.length;i++)
{
Message mess1 = found[i];
System.out.println("->Message Number > "+i);
System.out.println("->Message Subject >"+mess1.getSubject());
}
folderbox.close(true);
store.close();
}
catch(Exception e)
{
System.err.println(e.getMessage());
}
}
}
我正在使用Eclipse IDE,我面临的问题是,无论我在SearchTerm方法中传递了什么关键字,我总是得到null Exception和Message [] Found Array。我使用Stack Trace来找出这个NullPointer异常的问题,它位于
行Message[] found = folderbox.search(search);
我无法理解这里的问题是什么?
此致 谢谢
PS - 如果有人也可以发布更正后的代码,那就太好了 谢谢
此外,当我在SearchTerm中直接添加关键字时,它会出现类似
的错误SearchTerm searchCon = new SearchTerm([Keyword]);
有2个错误 1.Cannot实例化SearchTerm 2. Serializable类不声明Type Long的静态最终Serial Verison UID字段
所以我无法理解这里的错误
答案 0 :(得分:0)
你有例外,因为你有没有主题的邮件。声明应予以纠正;
if(message.getSubject() != null && message.getSubject().contains([Keyword]))
答案 1 :(得分:0)
您的代码已满[{3}},请更正。
无需创建自己的自定义SearchTerm,只需使用common JavaMail mistakes:
SearchTerm search = new SubjectTerm(keyword);