php&java(三)


Posted in PHP onOctober 09, 2006

例子二:通过Xalan 1.2,使用XSLT转换XML

做为第二个例子,我们使用了Xalan-java的XSLT引擎,这个引擎来自于APACHE的XML项目,使用这个程序,我们能够使用XSL转换XML源文件。这将极大的方便我们处理文档和进行内容管理。

开始之前,我们需要将xerces.jar 和 xalan.jar文件放入java.class.path目录下(这两个文件包含在Xalan-Java 1.2 中,可以从xml.apache.org处下载)。
PHP程序如下:
函数xslt_transform()以XML和XSL文件为参数,形式可为文件名(如:foo.xml)或URL(如:http://localhost/foo.xml)。

<?php

function xslt_transform($xml,$xsl) {

  // Create a XSLTProcessorFactory object. XSLTProcessorfactory is a Java
  // class which manufactures the processor for performing transformations.
  $XSLTProcessorFactory = new java("org.apache.xalan.xslt.XSLTProcessorFactory");

  // Use the XSLTProcessorFactory method getProcessor() to create a
  // new XSLTProcessor object.
  $XSLTProcessor = $XSLTProcessorFactory->getProcessor();

  // Use XSLTInputSource objects to provide input to the XSLTProcessor
  // process() method for transformation. Create objects for both the
  // xml source as well as the XSL input source. Parameter of
  // XSLTInputSource is (in this case) a 'system identifier' (URI) which
  // can be an URL or filename. If the system identifier is an URL, it
  // must be fully resolved.
  $xmlID = new java("org.apache.xalan.xslt.XSLTInputSource", $xml);
  $stylesheetID = new java("org.apache.xalan.xslt.XSLTInputSource", $xsl);

  // Create a stringWriter object for the output.
  $stringWriter = new java("java.io.StringWriter");

  // Create a ResultTarget object for the output with the XSLTResultTarget
  // class. Parameter of XSLTResultTarget is (in this case) a 'character
  // stream', which is the stringWriter object.  
  $resultTarget = new java("org.apache.xalan.xslt.XSLTResultTarget", $stringWriter);

  // Process input with the XSLTProcessors' method process(). This
  // method uses the XSL stylesheet to transform the XML input, placing
  // the result in the result target.
  $XSLTProcessor->process($xmlID,$stylesheetID,$resultTarget);

  // Use the stringWriters' method toString() to
  // return the buffer's current value as a string to get the
  // transformed result.
  $result = $stringWriter->toString();
  $stringWriter->close();
  return($result);
}

?>

函数定义好后,我们就可以调用它了,在下面的例程中,变量$xml指向一个URL字符串,$xsl也是如此。这个例子将显示5个最新的phpbuilder.com文章标题。

<?php

$xml = "http://www.phpbuilder.com/rss_feed.php?type=articles&limit=5";
$xsl = "http://www.soeterbroek.com/code/xml/rss_html.xsl";
$out = xslt_transform($xml,$xsl);
echo $out;

?>

如果你在本地机上运行程序,必须确保你的函数参数指向正确的文件名。

<?php

$xml  = "/web/htdocs/xml_java/rss_feed.xml";
$xsl  = "/web/htdocs/xml_java/rss_html.xsl";
$out = xslt_transform($xml,$xsl);
echo $out;

?>

虽然这种效果我们可以通过其它方法实现,或许那些方法更好,但这个例子能让你对PHP调用JAVA类有一个更好的了解。

教程结束了,希望你能够从这篇教程中学到点东西,以下是一些你用得到的链接:
http://www.php4win.de ~ A great Win32 distribution of PHP
http://www.javasoft.com ~ Sun's Java release
http://www.jars.com ~ Start searching for handy Java classes
http://www.gamelan.com ~ More Java classes
http://www.technetcast.com/tnc_play_stream.html?stream_id=400 ~ Sam Ruby about PHP and Java integration at Open Source Convention 2000 (audio)
http://xml.apache.org ~ Apache XML Project
http://www.phpbuilder.com/columns/justin20001025.php3 ~ Transforming XML with XSL using Sablotron

PHP 相关文章推荐
PHP5.0对象模型探索之抽象方法和抽象类
Sep 05 PHP
PHP实现多进程并行操作的详解(可做守护进程)
Jun 18 PHP
在windows平台上构建自己的PHP实现方法(仅适用于php5.2)
Jul 05 PHP
深入理解PHP中的Streams工具
Jul 03 PHP
PHP异常处理Exception类
Dec 11 PHP
php打乱数组二维数组多维数组的简单实例
Jun 17 PHP
php与c 实现按行读取文件实例代码
Jan 03 PHP
php微信开发之图片回复功能
Jun 14 PHP
Yii2结合Workerman的websocket示例详解
Sep 10 PHP
YII框架常用技巧总结
Apr 27 PHP
PHP命名空间定义与用法实例分析
Aug 14 PHP
PHP字符串与数组处理函数用法小结
Jan 07 PHP
一个用于mysql的数据库抽象层函数库
Oct 09 #PHP
教你如何把一篇文章按要求分段
Oct 09 #PHP
全文搜索和替换
Oct 09 #PHP
转换中文日期的PHP程序
Oct 09 #PHP
PHP网上调查系统
Oct 09 #PHP
PHP的ASP防火墙
Oct 09 #PHP
一个高ai的分页函数和一个url函数
Oct 09 #PHP
You might like
PHP的栏目导航程序
2006/10/09 PHP
在PHP中操作Excel实例代码
2010/04/29 PHP
PHP处理大量表单字段的便捷方法
2015/02/07 PHP
浅析PHP中的闭包和匿名函数
2017/12/25 PHP
PHP正则判断一个变量是否为正整数的方法
2019/02/27 PHP
PHP进阶学习之Geo的地图定位算法详解
2019/06/19 PHP
javascript学习笔记(五)正则表达式
2011/04/08 Javascript
面向对象的Javascript之三(封装和信息隐藏)
2012/01/27 Javascript
angularjs指令中的compile与link函数详解
2014/12/06 Javascript
jQuery的animate函数实现图文切换动画效果
2015/05/03 Javascript
js学习阶段总结(必看篇)
2016/06/16 Javascript
NodeJS和BootStrap分页效果的实现代码
2016/11/07 NodeJs
DOM 事件的深入浅出(二)
2016/12/05 Javascript
jQuery实现字符串全部替换的方法
2016/12/12 Javascript
Vue实例简单方法介绍
2017/01/20 Javascript
bootstarp modal框居中显示的实现代码
2017/02/18 Javascript
Javascript中this关键字指向问题的测试与详解
2017/08/11 Javascript
JS获取数组中出现次数最多及第二多元素的方法
2017/10/27 Javascript
Vue添加请求拦截器及vue-resource 拦截器使用
2017/11/23 Javascript
ES6基础之解构赋值(destructuring assignment)
2019/02/21 Javascript
js的新生代垃圾回收知识点总结
2019/08/22 Javascript
JavaScript回调函数callback用法解析
2020/01/14 Javascript
python实现txt文件格式转换为arff格式
2018/05/31 Python
Python基于QQ邮箱实现SSL发送
2020/04/26 Python
Python本地及虚拟解释器配置过程解析
2020/10/13 Python
细说NumPy数组的四种乘法的使用
2020/12/18 Python
苏格兰销售女装、男装和童装的连锁店:M&Co
2018/03/16 全球购物
YBF Beauty官网:美丽挚友,美国知名彩妆品牌
2020/11/22 全球购物
EJB3推出JPA的原因
2013/10/16 面试题
文明礼仪伴我行演讲稿
2014/05/12 职场文书
中小学校园安全广播稿
2014/09/29 职场文书
道路交通事故赔偿协议书
2014/10/24 职场文书
护士长2014年终工作总结
2014/11/11 职场文书
2015年助残日活动总结
2015/03/27 职场文书
python异常中else的实例用法
2021/06/15 Python
Python3接口性能测试实例代码
2021/06/20 Python