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 would like to know how to parse XML file from local in Titanium App?

var file = Titanium.Filesystem.getFile("Translation1.xml");
if ( file.exists() ) {
Ti.API.info("found");
 var xmltext = file.read().text;
    var doc = Ti.XML.parseString(xmltext); 
 //   var books = xmlMessage.documentElement.getElementsByTagName("DUAS");
   //  Ti.API.info(xmltext.length); //Returns 50
     Ti.API.info(xmltext);      //Returns [Ti.Document  
 }
else
{
Ti.API.info("not found");
 }

}
catch(e)
{
 alert(e); 
 Ti.API.info(e);

}

i get only first line of the file, like following

   <?xml version="1.0" encoding="utf-8" ?>

how can i get all the data from that xml file?

share|improve this question

2 Answers

up vote 0 down vote accepted

You should start by reading the 'Working with XML Data' guide.

share|improve this answer

After you have parse the string, you have to search the elements too:

var doc = Ti.XML.parseString(xmltext);
var results = doc.getElementsByTagName('yourxmltag');

Now you can loop for each of the element found:

var arr = [];
for(var i=0; i<results.length; i++){
    arr[i] = results.item(i).text;
}

Now arr array has your results.

share|improve this answer

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.