I have an XML file located at a location such as
http://example.com/test.xml
I\'m trying to parse the XML file to use it in my program with
File fileXml = new File(url); DocumentBuilder parser = DocumentBuilderFactory.newInstance().newDocumentBuilder(); Document document = parser.parse(fileXml);
it should go