Applying xpath on xml with default namespace with XOM
问题 I have below XML which contains a default namespace <?xml version="1.0"?> <catalog xmlns="http://www.edankert.com/examples/"> <cd> <artist>Stoat</artist> <title>Future come and get me</title> </cd> <cd> <artist>Sufjan Stevens</artist> <title>Illinois</title> </cd> <cd> <artist>The White Stripes</artist> <title>Get behind me satan</title> </cd> </catalog> And Im running following code expecting some result in return Element rootElem = new Builder().build(xml).getRootElement(); xc =