You can use it with maven (Java.net Repository):
<dependency>
<groupId>com.googlecode</groupId>
<artifactId>gmail4j</artifactId>
<version>0.3</version>
</dependency>
Some example code? Get unread Messages from your account (through proxy):
GmailClient client = new RssGmailClient();
GmailConnection connection = new HttpGmailConnection(LoginDialog.getInstance().show("Enter Gmail Login"));
connection.setProxy("proxy.example.com", 8080);
client.setConnection(connection);
final Listmessages = client.getUnreadMessages();
for (GmailMessage message : messages) {
System.out.println(message);
}
Looks like this:
how to import library of gmail4j in java file.......
ReplyDeleteGmail client not resolved to a type........error
Hi,
DeleteDon't know if I can help you with that. You might want to check a more basic example about java that gets you started.
-m