如何在 JSP 中将 XPath 表达式结果的值存储到变量中?


<x:set> 标签将变量设置为 XPath 表达式的值。

如果 XPath 表达式结果为布尔值,则 <x:set> 标签设置一个 java.lang.Boolean 对象;对于字符串,则设置 java.lang.String 对象;对于数字,则设置 java.lang.Number 对象。

属性

<x:set> 标签具有以下属性:

属性描述必填默认值
var设置为 XPath 表达式值的变量主体
select要评估的 XPath 表达式
scopevar 属性中指定的变量的作用域页面

示例

以下示例将演示如何使用 <x:set> 标签:

<%@ 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 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"/>
      <x:set var = "fragment" select = "$output//book"/>
      <b>The price of the second book</b>:
      <c:out value = "${fragment}" />
   </body>
</html>

访问上述 JSP,将显示以下结果:

Books Info:
The price of the second book:[[book: null], [book: null]]

更新于: 2019-07-30

176 次浏览

开启你的 职业生涯

通过完成课程获得认证

立即开始
广告