Skip to content

Instantly share code, notes, and snippets.

@kelvinewilliams
Last active December 21, 2015 07:19
Show Gist options
  • Save kelvinewilliams/6270514 to your computer and use it in GitHub Desktop.
Save kelvinewilliams/6270514 to your computer and use it in GitHub Desktop.
Java: DOM Check a Document (org.w3c.dom.Document) for the presence of a tag.
private boolean hasTag(Document document, String tag) {
NodeList nodeList = document.getElementsByTagName(tag);
return (nodeList.getLength() > 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment