Hi I am trying to parse XML feeds in Java. But I am unable to parse some tags from the XML document. I am trying to parse the following tag The data is in "description tag" ... Please help me on this...
<description>The Congress has survived the crisis scripted by Mamata
Banerjee, but the ruling party needs a canny political strategy to
ensure that it is stable even as the government it leads steps up on
reform m...<img width='1' height='1'
src='http://ndtv.com.feedsportal.com/c/33805/f/606695/s/23c772cd/mf.gif'
border='0'/><div class='mf-viral'><table
border='0'><tr><td valign='middle'><a
href="http://share.feedsportal.com/viral/sendEmail.cfm?lang=en&title=Congress+Working+Committee+meets+to+counter+FDI+opposition&link=http%3A%2F%2Fwww.ndtv.com%2Farticle%2Findia%2Fcongress-working-committee-meets-to-counter-fdi-opposition-271690"
target="_blank"><img
src="http://res3.feedsportal.com/images/emailthis2.gif" border="0"
/></a></td><td valign='middle'><a
href="http://res.feedsportal.com/viral/bookmark.cfm?title=Congress+Working+Committee+meets+to+counter+FDI+opposition&link=http%3A%2F%2Fwww.ndtv.com%2Farticle%2Findia%2Fcongress-working-committee-meets-to-counter-fdi-opposition-271690"
target="_blank"><img
src="http://res3.feedsportal.com/images/bookmark.gif" border="0"
/></a></td></tr></table></div><br/><br/><a
href="http://da.feedsportal.com/r/145605866045/u/49/f/606695/c/33805/s/23c772cd/a2.htm"><img
src="http://da.feedsportal.com/r/145605866045/u/49/f/606695/c/33805/s/23c772cd/a2.img"
border="0"/></a><img width="1" height="1"
src="http://pi.feedsportal.com/r/145605866045/u/49/f/606695/c/33805/s/23c772cd/a2t.img"
border="0"/><img
src="http://feeds.feedburner.com/~r/NdtvNews-TopStories/~4/0QuRIu72QNo"
height="1" width="1"/></description>
The problem is when i store description all the data along with description get stored. I want to eliminate the data other than description.... The code i am using to parse this data is as :
int eventType = xpp.getEventType();
while (eventType != XmlPullParser.END_DOCUMENT)
{
if (eventType == XmlPullParser.START_TAG)
{
if (xpp.getName().equalsIgnoreCase("item"))
{
insideItem = true;
}
else if (xpp.getName().equalsIgnoreCase("title"))
{
if (insideItem)
{
headLines = xpp.nextText();
}
}
else if (xpp.getName().equalsIgnoreCase("pubDate"))
{
if (insideItem)
{
pubDate = xpp.nextText();
}
}
else if (xpp.getName().equalsIgnoreCase("description"))
{
if (insideItem)
{
description = xpp.nextText();
}
}
else if (xpp.getName().equalsIgnoreCase("link"))
{
if (insideItem)
{
link = xpp.nextText();
}
}
}
else if (eventType == XmlPullParser.END_TAG && xpp.getName().equalsIgnoreCase("item"))
{
insideItem = false;
myNews.add(new News(headLines, pubDate, description, link));
}
eventType = xpp.next();
}