XQuery FLWOR表達式
FLWOR
是首字母縮略詞,代表 - 「For,Let,Where,Order by,Return」首字母縮略寫。 以下列表顯示了它們在FLWOR
表達式中所佔的含義 -
- F -
For
- 選擇所有節點的集合。 - L -
Let
- 將結果放在XQuery變量中。 - W -
Where
- 選擇條件指定的節點。 - O -
Order by
- 按照條件對指定的節點進行排序。 - R -
Return
- 返回最終結果。
示例
以下是一個示例XML文檔,其中包含有關書籍的信息。 我們將使用FLWOR
表達式來檢索價格大於30
的書籍標題。
文件:books.xml 的文件內容 -
<?xml version="1.0" encoding="UTF-8"?>
<books>
<book category="JAVA">
<title lang="en">15天搞定Java</title>
<author>Maxsu</author>
<year>2015</year>
<price>30.00</price>
</book>
<book category="DOTNET">
<title lang="en">15天搞定.Net</title>
<author>Susen</author>
<year>2018</year>
<price>40.50</price>
</book>
<book category="XML">
<title lang="en">3天搞定XQuery</title>
<author>Yizhi</author>
<author>Maxsu</author>
<year>2016</year>
<price>50.00</price>
</book>
<book category="XML">
<title lang="en">24小時搞定XPath</title>
<author>Jazz Bee</author>
<year>2019</year>
<price>16.50</price>
</book>
</books>
以下Xquery文檔包含要在上述XML文檔上執行的查詢表達式。
文件:books.xqy -
let $books := (doc("books.xml")/books/book)
return <results>
{
for $x in $books
where $x/price>30
order by $x/price
return $x/title
}
</results>
文件:XQueryTester.java 的代碼如下所示 -
//package com.yiibai.xquery;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import javax.xml.xquery.XQConnection;
import javax.xml.xquery.XQDataSource;
import javax.xml.xquery.XQException;
import javax.xml.xquery.XQPreparedExpression;
import javax.xml.xquery.XQResultSequence;
import com.saxonica.xqj.SaxonXQDataSource;
public class XQueryTester {
public static void main(String[] args){
try {
execute();
}
catch (FileNotFoundException e) {
e.printStackTrace();
}
catch (XQException e) {
e.printStackTrace();
}
}
private static void execute() throws FileNotFoundException, XQException{
InputStream inputStream = new FileInputStream(new File("books.xqy"));
XQDataSource ds = new SaxonXQDataSource();
XQConnection conn = ds.getConnection();
XQPreparedExpression exp = conn.prepareExpression(inputStream);
XQResultSequence result = exp.executeQuery();
while (result.next()) {
System.out.println(result.getItemAsString(null));
}
}
}
運行上面示例代碼,得到以下結果 -
D:\worksp\xquery>java -Djava.ext.dirs=D:\worksp\xquery\libs XQueryTester
<results>
<title lang="en">15天搞定.Net</title>
<title lang="en">3天搞定XQuery</title>
</results>
注:要驗證結果,請將books.xqy 的內容(在XQuery開發環境章節中)替換爲上面的XQuery表達式,然後執行XQueryTester java程序。