发布于 2015-08-17 14:54:35 | 67 次阅读 | 评论: 0 | 来源: 网络整理
<x:out>标签会显示一个XPath表达式的结果,它的功能类似于<%= %>JSP语法。
<x:out>标签具有以下属性:
属性 | 描述 | 必须 | 默认 |
---|---|---|---|
select | XPath表达式计算为字符串,通常使用XPath变量 | Yes | None |
escapeXml | true - 如果标记应该转义特殊XML字符 | No | true |
让我们举个例子,将覆盖标签(1)<x:out>(2)<x:parse>。
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
<html>
<head>
<title>JSTL x:out Tags</title>
</head>
<body>
<h3>Books Info:</h3>
<c:set var="xmltext">
<books>
<book>
<name>Padam History</name>
<author>ZARA</author>
<price>100</price>
</book>
<book>
<name>Great Mistry</name>
<author>NUHA</author>
<price>2000</price>
</book>
</books>
</c:set>
<x:parse xml="${xmltext}" var="output"/>
<b>The title of the first book is</b>:
<x:out select="$output/books/book[1]/name" />
<br>
<b>The price of the second book</b>:
<x:out select="$output/books/book[2]/price" />
</body>
</html>
这将产生以下结果:
BOOKS INFO:The title of the first book is: Padam HistoryThe price of the second book: 2000 |