小兔网

JSP 标准标签库JSP 标准标签库

<x:out>标签显示XPath表达式的结果,与<%=  %>功能相似。

语法格式

<x:out select="<string>" escapeXml="<true|false>"/>

属性

<x:out>标签有如下属性:

属性描述是否必要默认值
select需要计算的XPath表达式,通常使用XPath 变量
escapeXml是否忽略XML 特殊字符true

实例演示

接下来的例子使用了<x:out>和<x:parse>标签:

<%@ page language="java" contentType="text/html; charset=UTF-8"    pageEncoding="UTF-8"%><%@ 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 标签</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 History The price of the second book: 2000

JSP 标准标签库JSP 标准标签库