<x:parse> 标签

<x:parse>标签用来解析属性中或标签主体中的XML数据。

语法格式

<x:parse
  var="<string>"
  varDom="<string>"
  scope="<string>"
  scopeDom="<string>"
  doc="<string>"
  systemId="<string>"
  filter="<string>"/>

属性

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

属性描述是否必要默认值
var包含已解析XML数据的变量
xml需要解析的文档的文本内容(String或Reader)Body
systemId系统标识符URI,用来解析文档
filter应用于源文档的过滤器
doc需要解析的XML文档Page
scopevar属性的作用域Page
varDom包含已解析XML数据的变量Page
scopeDomvarDom属性的作用域Page

实例演示

接下了的例子告诉我们如何解析一个XML文档:

books.xml文件代码如下:

<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>

main.jsp文件代码如下:

<%@ 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:parse 标签</title>
</head>
<body>
<h3>Books Info:</h3>
<c:import var="bookInfo" url="http://localhost:8080/books.xml"/>

<x:parse xml="${bookInfo}" 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

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号