当前位置: 软件>java软件
联系人导出 ContactList
本文导语: ContactList 用于获取用户的msn和邮箱联系人列表,支持的邮箱包括hotmail, gmail, yahoo, sohu, sina, 163, 126, tom, yeah, 189和139。 示例代码: try { ContactsImporter importer = ContactsImporterFactory.getHotmailContacts(username, password); List contacts = import...
ContactList 用于获取用户的msn和邮箱联系人列表,支持的邮箱包括hotmail, gmail, yahoo, sohu, sina, 163, 126, tom, yeah, 189和139。
示例代码:
try { ContactsImporter importer = ContactsImporterFactory.getHotmailContacts(username, password); List contacts = importer.getContacts(); for (Contact contact : contacts) { System.out.println(contact.getUsername() + ": " + contact.getEmail()); } } catch (ContactsException ex) { ex.printStackTrace(); }
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。