Skip to content

Instantly share code, notes, and snippets.

View haebi's full-sized avatar
🏠
Working from home

Haebi haebi

🏠
Working from home
View GitHub Profile
@haebi
haebi / XPathExample.java
Last active November 2, 2017 02:22
Parse XML with Java XPath Example Code
package xmlparse2;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathFactory;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;