Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem with parsing XML file on android.

My examples.xml file look like this:

<categories>
    <example>something</example>
</categories>

And my Java code:

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(getResources().openRawResource(R.xml.examples));
doc.getDocumentElement().normalize(); //here it throws NullPointerException

It throws a NullPointerException when I try to normalize().

I am inspired by this simple tutorial http://sanjaal.com/java/tag/getdocumentelementnormalize/

Can anyone tell me what I'm doing wrong? Thanks

share|improve this question
2  
the value of doc is most likely null – Hunter McMillen Jun 1 '11 at 16:27

3 Answers

up vote 1 down vote accepted

Try moving your xml file to the res/raw folder, then try this:

Document doc = db.parse(getResources().openRawResource(R.raw.examples));

Let me know if that works.

EDIT: if you look at http://developer.android.com/reference/android/content/res/Resources.html#openRawResource%28int%29 it basically says you can only use that on drawable, sound and raw resources.

share|improve this answer
Wow, it works.. Thanks a lot – Semanticer Jun 1 '11 at 16:50

Try XmlPullParser. It's a little bit easier, I think.

XmlPullParser | Android Developers

share|improve this answer

Try Project|Clean - it might not be getting the raw XML from your resources. Eclipse seems a bit flaky that way, I sometimes change code & it doesn't pick up the changes until its cleaned.

share|improve this answer
didn't help :-( – Semanticer Jun 1 '11 at 16:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.