i am new to java and currently having problems in retrieving the
contact info from the atom feed format.
below is my coding:
SyndFeedInput input = new SyndFeedInput();
SyndFeed feed = input.build(aReader);
Iterator entries;
entries = feed.getEntries().iterator();
while (entries.hasNext()) {
SyndEntry entry = (SyndEntry)entries.next();
System.out.println(" Title: " +
entry.getTitle());
System.out.println(entry.getForeignMarkup());
}
currently i am only able to retrieve the name.
can someone teach me how to retrieve the email address.
thx in advance
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Contacts API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-contacts-api?hl=en
-~----------~----~----~----~------~----~------~--~---