转载

JSP XML XSLT将输出转换HTML

我们知道JSP XML XSLT就可以直接输出到支持XML的浏览器上,如IE 5.0以上,但是,我们还要考虑到有不少浏览器不直接支持XML,在这种情况下,我们需要在服务器上进行转换成html输出到浏览器,这种临时过渡办法恐怕要在一段时间内一直要使用.

使用JSP 加上tablib标识库,我们可以完成这种转换。

著名open source项目组jakarta.apache.org推出的系列标识库中,就有这个功能的tanglib:http://jakarta.apache.org/taglibs/doc/xsl-doc/intro.html

按照jakarta配置方法,有点繁琐,需要修改或定义Web.xml,本人经过摸索,使用下列相当简单的办法,就可以使JSP能成功运行XSL这个标识库了。

xsl标识库有三个关键包:
◆xerces.jar 可以在http://xml.apache.org/中得到
◆xalan.jar 可以在http://xml.apache.org/中得到
◆xsl.jar 从http://jakarta.apache.org/taglibs/doc/xsl-doc/intro.html得到

1.将这三个包放置到Tomcat的common/lib目录下,或者直接放入Classpath环境中。

2.在JSP中调用标识库:

原来Jakarta推荐方法是:

  1. <%@taglib uri="http://jakarta.apache.org/taglibs/xsl-1.0" 
    prefix="xsl" %> 


这就需要在/WEB-INF/web.xml下定义一下http://jakarta.apache.org/taglibs/xsl-1.0指向。如:

  1. <taglib>  
  2. <taglib-uri>http://jakarta.apache.org/taglibs/xsl-1.0</taglib-uri>  
  3. <taglib-location>/WEB-INF/xsl.tld</taglib-location>  
  4. </taglib> 

这种做法虽然很标准,但是,如果你的容器一直使用tomcat,就完全不必了。

我们的做法是:

  1. <%@taglib uri="xsl.jar" prefix="xsl" %> 

我们以Jakarta的XSL taglib附带的Apply.JSP为例,正好了解一下JSP XML XSLT三者之间的关系:

Apply.JSP

  1. <%@taglib uri="xsl.jar" prefix="xsl" %>  
  2. <html>  
  3. <head>  
  4. <title>Employee List</title>  
  5. </head>  
  6. <body bgcolor="white"

下面展示了Jsp XML XSLT的方法:
下面使用apply方法,将已经存在的employees.xml和employeeList.xsl结合在一起

  1. <xsl:apply xml="/xml/employees.xml" xsl="/xml/employeeList.xsl"/>  
  2. <hr> 

下面是使用已经存在employeeList.xsl 然后在Jsp中自己直接写入XML数据.

  1. <xsl:apply xsl="/xml/employeeList.xsl">  
  2. <?xml version="1.0" encoding="ISO-8859-1"?>  
  3. <employees>  
  4. <employee id="123">  
  5. <first-name>John</first-name>  
  6. <last-name>Doe</last-name>  
  7. <telephone>800-555-1212</telephone>  
  8. </employee>  
  9. <employee id="456">  
  10. <first-name>Jane</first-name>  
  11. <last-name>Smith</last-name>  
  12. <telephone>888-555-1212</telephone>  
  13. </employee>  
  14. <employee id="789">  
  15. <first-name>George</first-name>  
  16. <last-name>Taylor</last-name>  
  17. <telephone>555-555-1212</telephone>  
  18. </employee>  
  19. </employees>  
  20. </xsl:apply>  
  21. <hr> 

在上面程序中,展示了四种JSP XML XSLT的方法,基本可以满足我们的需要。注意上面的XML文件路径是"/xml/",这是相对Tomcat容器的绝对路径。

我们简单看一下employeeList.xsl和employees.xml内容:

employeeList.xsl类似html中的CSS,主要是对XML中数据显示方式进行定义:

  1. <?xml version="1.0"?>  
  2. <xsl:stylesheet version="1.0" xmlns:xsl=
    "http://www.w3.org/1999/XSL/Transform">  
  3. <xsl:template match="employees">  
  4. <table border="1" width="100%">  
  5. <tr>  
  6. <th>ID</th>  
  7. <th>Employee Name</th>  
  8. <th>Phone Number</th>  
  9. </tr>  
  10. <xsl:for-each select="employee">  
  11. <tr>  
  12. <td>  
  13. <xsl:value-of select="@id"/>  
  14. </td>  
  15. <td>  
  16. <xsl:value-of select="last-name"/>,  
  17. <xsl:value-of select="first-name"/>  
  18. </td>  
  19. <td>  
  20. <xsl:value-of select="telephone"/>  
  21. </td>  
  22. </tr>  
  23. </xsl:for-each>  
  24. </table>  
  25. </xsl:template>  
  26. </xsl:stylesheet>  

正文到此结束
Loading...