<x:out> 标签

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

语法格式

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

属性

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

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

实例演示

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

  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  4. <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
  5. <html>
  6. <head>
  7. <title>JSTL x:out 标签</title>
  8. </head>
  9. <body>
  10. <h3>Books Info:</h3>
  11. <c:set var="xmltext">
  12. <books>
  13. <book>
  14. <name>Padam History</name>
  15. <author>ZARA</author>
  16. <price>100</price>
  17. </book>
  18. <book>
  19. <name>Great Mistry</name>
  20. <author>NUHA</author>
  21. <price>2000</price>
  22. </book>
  23. </books>
  24. </c:set>
  25. <x:parse xml="${xmltext}" var="output"/>
  26. <b>The title of the first book is</b>:
  27. <x:out select="$output/books/book[1]/name" />
  28. <br>
  29. <b>The price of the second book</b>:
  30. <x:out select="$output/books/book[2]/price" />
  31. </body>
  32. </html>

运行结果如下:

  1. BOOKS INFO:
  2. The title of the first book is: Padam History
  3. The price of the second book: 2000