I am trying to extract data from RSS feed. RSS link - http://www.thehindu.com/sport/?service=rss?
Here are my default handler's character method.
public void characters(char[] ch, int start, int length) {
String text = "";
for (int i=0; i<length; i++)
text += ch[start+i];
}
When I try to print the 'text' for the description tag, it comes out to be empty. Is there an error with the above code or is it the RSS data format that's causing the problem??