2 messages in com.googlegroups.google-base-data-apiRe: problem with getContent()
FromSent OnAttachments
Attitude23 Apr 2007 02:35 
Jeff S26 Apr 2007 10:23 
Subject:Re: problem with getContent()
From:Jeff S (j.@google.com)
Date:04/26/2007 10:23:39 AM
List:com.googlegroups.google-base-data-api

Hello Shailendra,

The content class contains a Content member which is the actual data within the content XML element. So I think you can get the information you're looking for with:

content.Content

Hope this helps,

Jeff

On Apr 23, 2:35 am, Attitude <itbh@gmail.com> wrote:

Hi Folks !!

I need to get text inside a blogPost .... This is my code snippet .....

List<Entry> entriesList = resultFeed.getEntries(); Iterator it = entriesList.iterator(); Entry entry = (Entry) it.next(); Content content = entry.getContent();

Plz let me know how to get Text out of this content object .....

Cheers !!

Shailendra Gupta