readme.cjaxp
来自「jsp文件上传下载全攻略」· CJAXP 代码 · 共 25 行
CJAXP
25 行
======================================================================
The XSLT Compiler (XSLTC) is a Java-based tool for compiling XSL
stylesheets into extremely lightweight and portable Java byte code.
This Compiled JAXP Demo shows you one way to compile and use compiled
translets with JAXP.
Use the two classes provided, Compile and Transform, just like the
org.apache.xalan.xsltc.cmdline Compile and Transform classes.
Compile.java
Compiles an XSL stylesheet into a translet, which is written to
a '.class' file.
Transform.java
Constructs a TransformerFactory and asks it to load a translet
in the form of a Transformer. The translet performs the
transformation on behalf of the Transformer.transform() method.
Usage
java Compile <stylesheet.xsl>
java Transform <xmlfile.xml> <stylesheet>
----------------------------------------------------------------------
END OF README
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?