I have a custom contentHandler (called XMLHandler), I have been to many sites through Google and StackOverflow that detail how to set this up.
I do not understand how to use it.
Xml.parse (..., ...) returns nothing, since it is a void method.
How do I access my parsed XML data?
I understand that this question is probably trivial, but I was looking for (literally) a watch and could not find a solution.
Please, help.
String result = fetchData(doesntmatter); Xml.parse(result, new XMLHandler());
source share