JSP XML 数据处理

jsp xml 数据处理

当通过http发送xml数据时,就有必要使用jsp来处理传入和流出的xml文档了,比如rss文档。作为一个xml文档,它仅仅只是一堆文本而已,使用jsp创建xml文档并不比创建一个html文档难。

使用jsp发送xml

使用jsp发送xml内容就和发送html内容一样。唯一的不同就是您需要把页面的context属性设置为text/xml。要设置context属性,使用<%@page % >命令,就像这样:

<%@ page contenttype="text/xml" %>

接下来这个例子向浏览器发送xml内容:

<%@ page contenttype="text/xml" %>

<books>
   <book>
      <name>padam history</name>
      <author>zara</author>
      <price>100</price>
   </book>
</books>

使用不同的浏览器来访问这个例子,看看这个例子所呈现的文档树。

在jsp中处理xml

在使用jsp处理xml之前,您需要将与xml 和xpath相关的两个库文件放在<tomcat installation directory>\lib目录下:

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

访问http://localhost:8080/main.jsp,运行结果如下:

books info:
the title of the first book is:padam history 
the price of the second book: 2000

使用jsp格式化xml

这个是xslt样式表style.xsl文件:

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl=
"http://www.w3.org/1999/xsl/transform" version="1.0">
 
<xsl:output method="html" indent="yes"/>
 
<xsl:template match="/">
  <html>
  <body>
   <xsl:apply-templates/>
  </body>
  </html>
</xsl:template>
 
<xsl:template match="books">
  <table border="1" width="100%">
    <xsl:for-each select="book">
      <tr>
        <td>
          <i><xsl:value-of select="name"/></i>
        </td>
        <td>
          <xsl:value-of select="author"/>
        </td>
        <td>
          <xsl:value-of select="price"/>
        </td>
      </tr>
    </xsl:for-each>
  </table>
</xsl:template>
</xsl:stylesheet>

这个是main.jsp文件:

<%@ 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:transform 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>
 
<c:import url="http://localhost:8080/style.xsl" var="xslt"/>
<x:transform xml="${xmltext}" xslt="${xslt}"/>
 
</body>
</html>

运行结果如下:

更多关于使用jstl处理xml的内容请查阅jsp标准标签库

相关文章