Gmail4J - accessing Gmail services from Java

Markus Eisele
2
Gmail4J is a simple, object oriented library for accessing Gmail services from Java. The actual build version 0.3 is available under a Apache License 2.0 from code.google.com.

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 List messages = client.getUnreadMessages();
for (GmailMessage message : messages) {
System.out.println(message);
}


Looks like this:

Post a Comment

2Comments

  1. how to import library of gmail4j in java file.......
    Gmail client not resolved to a type........error

    ReplyDelete
    Replies
    1. Hi,

      Don'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

      Delete
Post a Comment