I am currently using an xml that has been downloaded and been parsed from there,I like to do it directly from the url itself.How can I do that,I have added the snippet I am using below.Kindly help with a snippet or example.Thank you.
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
File file = new File(this.getFilesDir(), FILE_EXTRACTED);
Document dom = builder.parse(file);
Element root = dom.getDocumentElement();
root.normalize();