Skip to content

Instantly share code, notes, and snippets.

@simonharrer
Created November 5, 2012 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simonharrer/4016482 to your computer and use it in GitHub Desktop.
Save simonharrer/4016482 to your computer and use it in GitHub Desktop.
Validating XML Well-Formedness
String path = "my/test/path/to/file.xml";
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
db.parse(new File(path));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment