- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/gmail4j/
软件介绍
Gmail4J 是一个简单的面向对象的Java类库,用来在Java的程序中访问 Gmail的服务。
示例代码:
GmailClient client = new RssGmailClient();
client.setLoginCredentials(LoginDialog.getInstance().show("Enter Gmail Login"));
client.init();
final List<GmailMessage> messages = client.getUnreadMessages();
for (GmailMessage message : messages) {
System.out.println(message);
}
Data Structures and Algorithms
Alfred V. Aho、Jeffrey D. Ullman、John E. Hopcroft / Addison Wesley / 1983-1-11 / USD 74.20
The authors' treatment of data structures in Data Structures and Algorithms is unified by an informal notion of "abstract data types," allowing readers to compare different implementations of the same......一起来看看 《Data Structures and Algorithms》 这本书的介绍吧!
