を使用して解析している XML ドキュメントがありますJDOM-2.0.5
。次のコードは正常に機能し、bookNodes
リストには XML ファイルのすべてのブック ノードが含まれています。
SAXBuilder builder = new SAXBuilder();
// @see http://xerces.apache.org/xerces-j/features.html
// Disable namespace validation
builder.setFeature("http://xml.org/sax/features/namespaces", false);
Document doc = null;
try {
doc = builder.build(xmlURL);
} catch (JDOMException | IOException e) {
e.printStackTrace();
return null;
}
// get browse elmt
Element browse = doc.getRootElement().getChild("browse");
// Get all browse's chlidren
List<Element> bookNodes = browse.getChildren("book");
for (Element book : bookNodes) {
// Do things with the selected nodes
//...
}
そして、これが私の XML データの例です。
<?xml version="1.0" encoding="utf-8"?>
<Books xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.example.com/XMLSchema" version="1">
<status code="0"/>
<link>http://www.example.com/books</link>
<description>Browse, search and ....</description>
<language>en-us</language>
<pubDate>Sun, 09 Nov 2014 00:00:02 +0000</pubDate>
<copyright>Copyright 2014, XXX</copyright>
<category>Books</category>
<browse>
<book id="bk101">
<author>Gambardella, Matthew</author>
<title>XML Developer's Guide</title>
<genre>Computer</genre>
<price>44.95</price>
<publish_date>2000-10-01</publish_date>
<description>An in-depth look at creating applications
with XML.</description>
</book>
<book id="bk102">
<author>Ralls, Kim</author>
<title>The Midnight Rain</title>
<genre>Fantasy</genre>
<price>5.95</price>
<publish_date>2000-12-16</publish_date>
<description>A former architect battles corporate zombies,
an evil sorceress, and her own childhood to become queen
of the world.</description>
</book>
<book id="bk105">
<author>Corets, Eva</author>
<title>The Sundered Grail</title>
<genre>Fantasy</genre>
<price>5.95</price>
<publish_date>2001-09-10</publish_date>
<description>The two daughters of Maeve, half-sisters,
battle one another for control of England. Sequel to
Oberon's Legacy.</description>
</book>
<book id="bk106">
<author>Randall, Cynthia</author>
<title>Lover Birds</title>
<genre>Romance</genre>
<price>4.95</price>
<publish_date>2000-09-02</publish_date>
<description>When Carla meets Paul at an ornithology
conference, tempers fly as feathers get ruffled.</description>
</book>
</browse>
</Books>
質問1:
テキストを含む本のノードのみを選択したい。そこで、XPath のクエリ//book[contains(./title, 'The')]
とjaxen-1.1.6
次のコードを使用しました。
filter = "//book[contains(./title, 'The')]"; // should return 2 elements (2nd and 3rd nodes)
// use the default implementation
XPathFactory xFactory = XPathFactory.instance();
XPathExpression<Element> expr = xFactory.compile(filter, Filters.element());
List<Element> bookNodes = expr.evaluate(doc);
しかし、bookNodes
リストは空でした!
私のコードの何が問題になっていますか?
質問2:
以下を使用して xml フィールドを検索するには、より高度な機能が必要になります。
filter = "//book[matches(./title, '^ *XML.*?Developer.*?Guide *$', 'i')]"; // should return 1 element (1st node)
次に、XPath 2.0+ をサポートするものを使用しsaxon9he
ていますが、JDOM2 と上記のコードで動作させる方法がわかりませんでした。
したがって、私のコードに基づいてそれを行う方法を教えていただければ(私はすでにグーグルで助けを求めましたが、何も見つかりませんでした)
Q.1に答えると、自分が何を間違えたのかを理解するのに役立ちます。しかし、Q.2に答えると、私の小さな個人用アプリを進めるのに役立ちます。
ありがとうございました