[Fatal Error] countries.xml:8:6:
The markup in the document following the root element must be well-formed.
Exception in thread "main" org.xml.sax.SAXParseException;
systemId: file:/C:/Users/eclipse-workspace/Test/sample.xml;
lineNumber: 8; columnNumber: 6;
The markup in the document following the root element must be well-formed.
at java.xml/com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:261)
at java.xml/com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:339)
at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:206)
at com.code2care.tutorials.MyXmlDomParserExample.main(MyXmlDomParserExample.java:35)
If you are using Java SAX or DOM parsers and you get the above error, then your XML file is not well-formed while parsing such a file will give you SAXParseException.
Solution:Go to your XML file a check the line number and column number provided in the stack-trace. You can also try using tools like Notepad++ to validate your XML document.
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!