Parse Local Xml File In Android
How can I parse my local XML file located in my android project (inside res/XML folder) and want to get the values in that file.
Solution 1:
To access XML resources stored in res/xml
, call getResources().getXml()
from any Activity
or other Context
. You need to supply to getXml()
the ID of the XML to load (R.xml.myfile
).
Solution 2:
to read your xml add code as shown below
XmlResourceParsermyxml= mContext.getResources().getXml(R.xml.MyXml);
//MyXml.xml is name of our xml in newly created xml folder, mContext is the current context// Alternatively use: XmlResourceParser myxml = getContext().getResources().getXml(R.xml.MyXml);
myxml.next();//Get next parse eventinteventType= myxml.getEventType(); //Get current xml event i.e., START_DOCUMENT etc.
and to get content of code add code shown below
Post a Comment for "Parse Local Xml File In Android"