我在我的 android 项目中使用了 javamail api,并在“邮件主题”和“邮件内容”中解析字符串。在我的 gmail 中有很多邮箱,例如旅行、工作、照片……我需要浏览所有邮箱并在我的条件下搜索邮件。但是我发现当调用getData()时它会登录 gmail 并再次建立连接。
我的问题是
1.如何在android中保持连接?
2.如何同时搜索所有邮箱?
感谢帮助。
private String downloadUrl () throws IOException {
receiveMail("username", "password");
return null;
}
接收邮件部分
private static List<Message> receiveMail(String username, String Password) {
try {
Properties props = System.getProperties();
props.setProperty("mail.store.protocol", IMAPS_PROTOCOL);
Session session = Session.getDefaultInstance(props, null );
session.setDebug(false);
final Store store = session.getStore(IMAPS_PROTOCOL);
store.connect(IMAPS_MAIL_HOTS , username, Password);
getData(store, "travel");
getData(store, "job");
getData(store, "photo");
} catch(Exception ex) {
ex.printStackTrace();
}
return null;
}