程序员人生 网站导航

JSP结合XML+XSLT将输出转换HTML

栏目:htmlcss时间:2013-10-17 03:32:34
我们知道 XML+XSLT就可以直接输出到支持XML的浏览器上,如IE 5.0以上,但是,我们还要考虑到有不少浏览器不直接支持XML,在这种情况下,我们需要在服务器上进行转换成html输出到浏览器,这种临时过渡办法恐怕要在一段时间内一直要使用. bhd站长资讯
bhd站长资讯
  使用Jsp 加上tablib标识库,我们可以完成这种转换。bhd站长资讯
bhd站长资讯
  著名open source项目组jakarta.apache.org推出的系列标识库中,就有这个功能的tanglib:http://jakarta.apache.org/taglibs/doc/xsl-doc/intro.htmlbhd站长资讯
bhd站长资讯
  按照jakarta配置方法,有点繁琐,需要修改或定义Web.xml,本人经过摸索,使用下列相当简单的办法,就可以使Jsp能成功运行XSL这个标识库了。bhd站长资讯
bhd站长资讯
  xsl标识库有三个关键包:bhd站长资讯
bhd站长资讯
  xerces.jar 可以在http://xml.apache.org/中得到 bhd站长资讯
  xalan.jar 可以在http://xml.apache.org/中得到 bhd站长资讯
  xsl.jar 从http://jakarta.apache.org/taglibs/doc/xsl-doc/intro.html得到bhd站长资讯
  1.将这三个包放置到Tomcat的common/lib目录下,或者直接放入Classpath环境中。bhd站长资讯
bhd站长资讯
  2.在JSP中调用标识库:bhd站长资讯
bhd站长资讯
  原来Jakarta推荐方法是:bhd站长资讯
bhd站长资讯
<%@taglib uri="http://jakarta.apache.org/taglibs/xsl-1.0" prefix="xsl" %> bhd站长资讯
bhd站长资讯
bhd站长资讯
  这就需要在/WEB-INF/web.xml下定义一下http://jakarta.apache.org/taglibs/xsl-1.0指向。如:bhd站长资讯
bhd站长资讯
<taglib> bhd站长资讯
<taglib-uri>http://jakarta.apache.org/taglibs/xsl-1.0</taglib-uri> bhd站长资讯
<taglib-location>/WEB-INF/xsl.tld</taglib-location> bhd站长资讯
</taglib> bhd站长资讯
bhd站长资讯
bhd站长资讯
  这种做法虽然很标准,但是,如果你的容器一直使用tomcat,就完全不必了。bhd站长资讯
bhd站长资讯
  我们的做法是:bhd站长资讯
bhd站长资讯
<%@taglib uri="xsl.jar" prefix="xsl" %> bhd站长资讯
bhd站长资讯
bhd站长资讯
  我们以Jakarta的XSL taglib附带的Apply.jsp为例,正好了解一下Jsp XML XSLT三者之间的关系:bhd站长资讯
bhd站长资讯
  Apply.jspbhd站长资讯
bhd站长资讯
<%@taglib uri="xsl.jar" prefix="xsl" %> bhd站长资讯
<html>bhd站长资讯
<head>bhd站长资讯
<title>Employee List</title>bhd站长资讯
</head>bhd站长资讯
<body bgcolor="white">bhd站长资讯
bhd站长资讯
<p>下面展示了Jsp的四种组合XML XSLT的方法:bhd站长资讯
<p>下面使用apply方法,将已经存在的employees.xml和employeeList.xsl结合在一起bhd站长资讯
bhd站长资讯
<xsl:apply xml="/xml/employees.xml" xsl="/xml/employeeList.xsl"/>bhd站长资讯
<hr>bhd站长资讯
bhd站长资讯
bhd站长资讯
<p>下面是使用已经存在employeeList.xsl 然后在Jsp中自己直接写入XML数据.bhd站长资讯
bhd站长资讯
bhd站长资讯
<xsl:apply xsl="/xml/employeeList.xsl">bhd站长资讯
<?xml version="1.0" encoding="ISO-8859-1"?>bhd站长资讯
<employees>bhd站长资讯
<employee id="123">bhd站长资讯
<first-name>John</first-name>bhd站长资讯
<last-name>Doe</last-name>bhd站长资讯
<telephone>800-555-1212</telephone>bhd站长资讯
</employee>bhd站长资讯
<employee id="456">bhd站长资讯
<first-name>Jane</first-name>bhd站长资讯
<last-name>Smith</last-name>bhd站长资讯
<telephone>888-555-1212</telephone>bhd站长资讯
</employee>bhd站长资讯
<employee id="789">bhd站长资讯
<first-name>George</first-name>bhd站长资讯
<last-name>Taylor</last-name>bhd站长资讯
<telephone>555-555-1212</telephone>bhd站长资讯
</employee>bhd站长资讯
</employees>bhd站长资讯
</xsl:apply>bhd站长资讯
<hr>bhd站长资讯
bhd站长资讯
<p>下面使使用include调用的办法,这样一个XSLT样式可以适应不同的XML文件。bhd站长资讯
bhd站长资讯
<xsl:apply xsl="/xml/employeeList.xsl">bhd站长资讯
<xsl:include page="/xml/employees.xml"/>bhd站长资讯
</xsl:apply>bhd站长资讯
<hr>bhd站长资讯
bhd站长资讯
<p>下面是使用import方法,在page-scope(类似scope="page")中导入XML文件</p>bhd站长资讯
bhd站长资讯
<xsl:import id="data" page="/xml/employees.xml"/>bhd站长资讯
<xsl:apply nameXml="data" xsl="/xml/employeeList.xsl"/>bhd站长资讯
bhd站长资讯
</body>bhd站长资讯
bhd站长资讯
bhd站长资讯
bhd站长资讯
在上面程序中,展示了四种Jsp组合XML XSLT的方法,基本可以满足我们的需要。注意上面的XML文件路径是"/xml/",这是相对Tomcat容器的绝对路径。 bhd站长资讯
  我们简单看一下employeeList.xsl和employees.xml内容:bhd站长资讯
bhd站长资讯
  employeeList.xsl类似html中的CSS,主要是对XML中数据显示方式进行定义:bhd站长资讯
bhd站长资讯
<?xml version="1.0"?> bhd站长资讯
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> bhd站长资讯
<xsl:template match="employees">bhd站长资讯
<table border="1" width="100%">bhd站长资讯
<tr>bhd站长资讯
<th>ID</th>bhd站长资讯
<th>Employee Name</th>bhd站长资讯
<th>Phone Number</th>bhd站长资讯
</tr>bhd站长资讯
<xsl:for-each select="employee">bhd站长资讯
<tr>bhd站长资讯
<td>bhd站长资讯
<xsl:value-of select="@id"/>bhd站长资讯
</td>bhd站长资讯
<td>bhd站长资讯
<xsl:value-of select="last-name"/>, bhd站长资讯
<xsl:value-of select="first-name"/>bhd站长资讯
</td>bhd站长资讯
<td>bhd站长资讯
<xsl:value-of select="telephone"/>bhd站长资讯
</td>bhd站长资讯
</tr>bhd站长资讯
</xsl:for-each>bhd站长资讯
</table>bhd站长资讯
</xsl:template>bhd站长资讯
</xsl:stylesheet> bhd站长资讯
bhd站长资讯
bhd站长资讯
  employees.xml bhd站长资讯
bhd站长资讯
bhd站长资讯
<?xml version="1.0" encoding="ISO-8859-1"?> bhd站长资讯
bhd站长资讯
<employees> bhd站长资讯
 <employee id="123"> bhd站长资讯
  <first-name>John</first-name> bhd站长资讯
  <last-name>Doe</last-name> bhd站长资讯
  <telephone>800-555-1212</telephone> bhd站长资讯
 </employee> bhd站长资讯
 <employee id="456"> bhd站长资讯
  <first-name>Jane</first-name> bhd站长资讯
  <last-name>Smith</last-name> bhd站长资讯
  <telephone>888-555-1212</telephone> bhd站长资讯
 </employee> bhd站长资讯
  <employee id="789"> bhd站长资讯
  <first-name>George</first-name> bhd站长资讯
  <last-name>Taylor</last-name> bhd站长资讯
  <telephone>555-555-1212</telephone> bhd站长资讯
 </employee> bhd站长资讯
</employees> bhd站长资讯
bhd站长资讯
bhd站长资讯
  如果我们在employees.xml顶部加入:bhd站长资讯
bhd站长资讯
<?xml:stylesheet type="text/xsl" href="catalog.xsl"?> bhd站长资讯
bhd站长资讯
bhd站长资讯
  用支持XML的IE 5.0以上浏览器调用,其显示页面就和Apply.jsp显示页面是一样的。
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐