通过以下代码,我们可以获得黑莓设备中默认的邮件地址。
//get the default session
Session session = Session.getDefaultInstance();
If (session != null) {
//now the store
Store store = session.getStore();
//then the service configuration
ServiceConfiguration serviceConfig = store.getServiceConfiguration();
//now get the email address
String emailAddress = serviceConfig.getEmailAddress();
}
文章评分1次,平均分5.0:★★★★★
代码这玩意,可看不懂
每人都是自己精通的和不精通的东西。看的懂代码的不一定会做饭,会做饭的不一定能写代码。。。
这个是做么用的?
之前黑莓开发时用的代码。