繁体中文
设为首页
加入收藏
当前位置:PHP技术首页 >> PHP基础 >> php&java(三)

php&java(三)

2005-02-15 08:00:00  作者:  来源:互联网  浏览次数:0  文字大小:【】【】【
简介:例子二:通过Xalan 1.2,使用XSLT转换XML 做为第二个例子,我们使用了Xalan-java的XSLT引擎,这个引擎来自于APACHE的XML项目,使用这个程序,我们能够使用XSL转换XML源文件。这将极大的方便我们处理文档和进行内...
关键字:java amp php

例子二:通过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)。

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调用JAVA类有一个更好的了解。

责任编辑:admin
相关文章