⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 transformit.bat

📁 此程序都是企业级 的数据库开发程序 全面揭示了JAVA对数据库的操作
💻 BAT
字号:
@echo off
REM *********************************************************************************************
REM *																*
REM *  The transformIT script is a simple MS-DOS script that will kick off the Xalan processor. * 
REM *																*
REM *********************************************************************************************

REM ***************************************************************************************
REM *															*
REM * Setting my Path for my Java executable and the location of my xalan bin directory.  *
REM *															*
REM ***************************************************************************************
set JAVA=C:\jdk1.3\bin\java
set XALANHOME=C:\xalan-j_2_2_D6

REM *****************************************************************************************
REM *	   														  *
REM * Add in the xalan and xerces jars.  Note:  You need the Xerces Jar files to use Xalan. *
REM *														        *
REM *****************************************************************************************
set CLASSPATH=%XALANHOME%\bin\xalan.jar
set CLASSPATH=%CLASSPATH%;%XALANHOME%\bin\xerces.jar

REM ******************************************************************************
REM *                                                                            *
REM *  Reading my command - line parameter into my local variables.    		   *
REM * 			                                             		   *
REM *  XMLFILE - Path and name of the XML file to be processed.      		   *
REM *  XSLFILE - Path and name of the XSL file to be processed.      		   *
REM *  OUTFILE - Output file name for the results of the XSLT transformation.    *
REM *													   *
REM ******************************************************************************

set XMLFILE=%1%
set XSLFILE=%2%
set OUTFILE=%3%

REM ***************************************
REM *                                     * 
REM * Invoking the Xalan XSLT processor.  *
REM *                                     *
REM ***************************************
%JAVA% -cp %CLASSPATH% org.apache.xalan.xslt.Process -IN %XMLFILE% -XSL %XSLFILE% -OUT %OUTFILE% 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -