Java Outlook API is a Java library for accessing Microsoft Outlook folders such as Contact, Mail, Appointment.
Binary download: javaoutlook-1.0-bin.zip
Source download: javaoutlook-1.0-src.zip
This package is based on Jacob library, a Java-COM bridge that allows you to call COM Automation components from Java.
The following example shows you how to extracting Outlook contacts using Java Outlook API:
Outlook outlook = new Outlook();
OlItem[] items = outlook.getContactItems(start, count);
if (items == null) {
System.out.println("No contact found.");
} else {
for (OlItem item : items) {
System.out.println(item.toString());
}
}
Note: This package is provided "as is" and any express or implied warranties are
disclaimed. If you are happy with it and would like to contribute back to the
development, please send your money via Paypal to thangtbt@yahoo.com. All
contributions for this package will be donated to Cancer Research UK. Or you can
donate to them directly
but please kindly let me know.