JavaMail之POP3协议判断新邮件的思路
出处:javayou.com 作者:javayou.com 时间:<script type="text/javascript"><!--google_ad_client = "pub-6965424351286817";google_ad_width = 336;google_ad_height = 280;google_ad_format = "336x280_as";google_ad_channel ="7378659524";google_color_border = "FFFFFF";google_color_bg = "FFFFFF";google_color_link = "FF0000";google_color_url = "CCCCCC";google_color_text = "000000";//--></script><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script><iframe width="336" scrolling="no" height="280" frameborder="0" allowtransparency="true" hspace="0" vspace="0" marginheight="0" marginwidth="0" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-6965424351286817&dt=1207548917109&lmt=1207548916&format=336x280_as&output=html&correlator=1207548917109&channel=7378659524&url=http%3A%2F%2Fwww.5dmail.net%2Fhtml%2F2006-6-20%2F2006620161649.htm&color_bg=FFFFFF&color_text=000000&color_link=FF0000&color_url=CCCCCC&color_border=FFFFFF&ref=http%3A%2F%2Fwww.google.cn%2Fsearch%3Fq%3Djavamail%2B%25E3%2580%2580uid%26btnG%3DGoogle%2B%25E6%2590%259C%25E7%25B4%25A2%26complete%3D1%26hl%3Dzh-CN%26newwindow%3D1%26client%3Dfirefox%26rls%3Dorg.mozilla%253Azh-CN%253Aofficial%26hs%3DzyP&frm=0&cc=100&ga_vid=1953865898.1207535507&ga_sid=1207548918&ga_hid=1263182006&ga_fc=true&flash=9.0.115&u_h=1024&u_w=1280&u_ah=1000&u_aw=1280&u_cd=32&u_tz=480&u_his=1&u_java=true&u_nplug=11&u_nmime=25" name="google_ads_frame"></iframe> 本来准备长篇大论一番,写一些关于邮件、JavaMail的基本知识,写了一些文字后才发现自己犯了个错误,因为对该题目感兴趣的人肯定已经熟知这些东西,没有必要我在这多费口舌。也就是说POP3无法判断某一封邮件是否已读,虽然JavaMail的某些类中也有这样的方法,但是这些方法只是在使用IMAP的时候有效,为了使 JavaMail针对不同协议有统一的接口,因此它包容着不同协议的功能,是一套抽象的关于邮件系统的API。举个例子,Folder类中关于新邮件的几 个方法对POP3协议都是无效的。既然无效我们怎么解决在使用POP3协议的时候判断是否为新邮件的这样一个要求呢?——我们必须在客户端做点手脚。
一个邮件服务器在处理每封邮件的时候会给它分配一个独一无二的编号(UID),这个编号是一个正的长整数,一般这是一个递增的值,有关于这个UID可以参 照RFC 2060的详细说明。利用这个UID我们就可以实现邮件的读状态的处理。首先我们必须在客户端保存一个一对多的关系表,也就是一个邮箱地址对应多个邮件的 UID,以后在收取每封邮件的时候判断该邮件的UID是否已经在本地保存,如果已保存则该邮件已读,否则的话这是一封新邮件,并把该新邮件的UID加入本 地继续保存。可能你会觉得这样的话岂不是要保存很多邮件的编号,会不会占用空间之类的怀疑,我想这应该是一个权宜之策,不过UID仅仅是一个长整数,浪费 不了多大的空间。
在获取邮件UID的时候还需要有一个注意的地方不再啰嗦,请看下面程序片断中的红色粗体字。
URLName url = new URLName("pop3", host, port, "", user, password);
Session session = Session.getInstance(System.getProperties(),null);
Store store = session.getStore(url);
POP3Folder inbox = null;
try {
store.connect();
inbox = (POP3Folder) store.getFolder("INBOX");
inbox.open(Folder.READ_ONLY);
FetchProfile profile = new FetchProfile();
profile.add(FetchProfile.Item.ENVELOPE);
Message[] messages = inbox.getMessages();
inbox.fetch(messages, profile);
int j = messages.length - 1;
for (int i = 0; i < messages.length; i++,j--)
System.out.println(inbox.getUID(messages[i]));
} finally {
try{
inbox.close(false);
}catch(Exception e){}
try{
store.close();
}catch(Exception e){}
}