JSP XML数据
-
XML数据
通过HTTP发送XML数据时,使用JSP处理传入和传出XML文档是有意义的。例如RSS文件。因为XML文档只是一堆文本,所以通过JSP创建一个文本比创建HTML文档要容易得多。 -
从JSP发送XML
您可以使用发送HTML相同的方式使用JSP发送XML内容。唯一的区别是您必须将页面的内容类型设置为text/xml。要设置内容类型,请使用<%@ page%>标签,如下所示:<%@ page contentType = "text/xml" %>
以下示例将显示如何将XML内容发送到浏览器-<%@ page contentType = "text/xml" %> <books> <book> <name>Padam History</name> <author>ZARA</author> <price>100</price> </book> </books>
使用不同的浏览器访问以上XML,以查看以上XML的文档树表示。 -
在JSP中处理XML
在您使用JSP XML进行处理,则需要以下两个XML和XPath相关的库复制到你的<tomcat安装目录>\lib中 -- XercesImpl.jar-从https://www.apache.org/dist/xerces/j/下载
- xalan.jar-从https://xml.apache.org/xalan-j/index.html下载
让我们将以下内容放入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,并保持在同一目录中-<%@ 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访问上述JSP -
使用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>
现在考虑有以下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标准标记库。