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.

My activity class look like this:

AssetManager assetmgr= getAssets();         
String list[] = assetmgr.list("subdir");    

if (list != null) {
    DocumentBuilder builder =DocumentBuilderFactory.newInstance().newDocumentBuilder();
    Document doc = builder.parse(getAssets().open("subdir/fullSurvey.xml"));

xml object class looks like this:

NodeList root = doc.getElementsByTagName("root");
NodeList nlQuestions = root.item(0).getChildNodes();

QuestionObject[] allQuestions = new QuestionObject[nlQuestions.getLength()];

for (int i = 0; i < nlQuestions.getLength(); i++) {
    Node question =  nlQuestions.item(i);
    NodeList childNodes = question.getChildNodes();

    QuestionObject x = new QuestionObject();

    for (int j = 0; j < childNodes.getLength(); j++) {
        Node child =  childNodes.item(j);               

        if (child.getNodeName() !="#text") {
            Questions t = Questions.valueOf(child.getNodeName());
            // etc.

I dont know how to parse xml file according to attribute value

share|improve this question

1 Answer

up vote 0 down vote accepted

I don't know that many XML parsers will traverse according to attribute values. Most deal with nodes, nodelists, etc. You may have to read in all the nodes and hash by the attribute values yourself.

share|improve this answer
Thanks for your feedback. I got attribute value through Xpath dynamically.DOMSource source = new DOMSource(doc); StringWriter xmlAsWriter = new StringWriter(); StreamResult result = new StreamResult(xmlAsWriter); TransformerFactory.newInstance().newTransformer().transform(source, result); StringReader xmlReader = new StringReader(xmlAsWriter.toString()); InputSource inputSrc = new InputSource(xmlReader); – noname Jan 10 '12 at 14:25

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.