代码获取邮箱内容

用代码实现登入我的油箱并读取我的邮件发件人、主题、内容、等信息:

java主要代码:
try{
propertiesp=newproperties();
Sessions=Session.getInstance(p,null);
Storest=s.getStore("POP3");
st.connect("host","username","password");
Folderf=st.getForder("inbox");
f.open(Foder.READ_ONLY);
Messagems=f.getMessages();
for(inti=0;iSystem.out.println(ms[i].getContent());
}
}catch(Exceptionex){

}

你可能感兴趣的:(代码获取邮箱内容)