1
我需要知道,如果在java中使用XPath,我可以在查詢結果中獲得XML片段。我會更好地解釋,我的工作哦,這簡單的XML文件:評估排除xml標記的XPath查詢
<bookshelf>
<shelf>
<book>
<author>J.R.R. Tolkien</author>
<title>The Lord of the Rings</title>
</book>
</shelf>
</bookshelf>
查詢的XPath我要評價是:/bookshelf/shelf/book
。
我需要找到一種方法來保持XML標記中的XPath響應得到一個結果類似如下:
<author>J.R.R. Tolkien</author>
<title>The Lord of the Rings</title>
可以做到這一點?
只需搜索'/ bookshelf/shelf/book/*'。 –