Extracting xml data from string var in android
- by ram
Hi I have post some value using HttpPost and convert response into string using
HttpEntity entity = response.getEntity();
String rrr=EntityUtils.toString(entity);
rrr contain some xml tags
<root>
<mytag>its my tag</mytag>
</root>
Now I have to extract string "its my tag"
I have try to do it with SAX Parser but it give out put null.
Plz, help me in solving this problem.