I am working with a large text inside a Text object from the Hadoop ( 0.20.203.0 ) Java library. I need to extract XML content from it without converting the whole object to a Java String ( by using .toString() ).
Could someone please give an example on how to do this?
Reading the documentation ( http://hadoop.apache.org/common/docs/current/api/org/apache/hadoop/io/Text.html ), I assume that I will need to use the .decode() functions.
Text t = "....<content>secret</content>...."
int start = t.find("<content>");
int end = t.find("</content>", start);
t.decode(String.getBytes(), start+7, end);
I don't understand how to use the first parameter of the function, though.