How to parse xml file from hard disk using DOM? Codes can be a good help..
InputStream catDoc = context.getResources().openRawResource(R.raw.testingxml);
DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
dom = builder.parse(catDoc, null);
What is context here?? I don't understand much..please help.. I'm a beginner here so...