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