If you want to get an URL from the XML above, you can try to use jsoup library:
String input = "\n" +
"
The company" +
" joins Google in protesting cyber attacks and censorship in China.\n" +
"";
Document document = Jsoup.parse(input);
String output = document.select("img").first().attr("src");