I want to open a local xml file to parse it.
So i've this line : saxReader.parse("file.xml");
And i've this error open failed: ENOENT (No such file or directory)
So I try to resolve it by giving a fullpath something like C:/.../file.xml
But there is the same problem.
Where do I put the file.xml in the project to resolve the problem ?
Thanks
saxReaderan instance ofjavax.xml.parsers.SAXParser? How exactly do you callparse? There isn't such a method with one parameter, you have to supply a handler as well. When passing in a String for the file, that String must be a URI to the file. Learn about URI syntax for the proper form. I think it'd be much better to use a variant of the method that takes aFile,InputStreamorInputSourceafter you've located the file via conventional means. – G_H Oct 24 '11 at 12:01saxReader = XMLReaderFactory.createXMLReader("org.apache.xerces.parsers.SAXParser"); simpleContentHandler = new SimpleContentHandler(); saxReader.setContentHandler(simpleContentHandler); saxReader.parse("file.xml");Here is my code – guillaume Oct 24 '11 at 12:08XMLReader. See my answer below. – G_H Oct 24 '11 at 12:16