I want to make something that searches through an XML file, to see if a string, entered by the user, exists. My XML file looks like this:\[code\]<?xml version="1.0" encoding="utf-8"?><resources><string-array name="dict_nl_array" ><item>ADHD</item><item>ADSL</item><item>AMvB</item><item>AOV</item><item>AOW</item><item>uniteit</item></string-array></resources>\[/code\]The only difference is that my XML is about 500 times as long as this.I tried loading the arraylist (xml) directly, but then I get this error: \[quote\] Failed adding to JNI local ref table (has 512 entries)\[/quote\]Which seems logical, because its a gigantic list of items.So, I was thinking, can I search through that XML file, without having to load it completely?Ofcourse, other suggestions to do this are welcome! (If possible, with an example, I'd greatly appreciate that!)