_setcp.bat
来自「《透视Java》的源码」· Batch 代码 · 共 20 行
BAT
20 行
@echo off
if not "%AXIS_HOME%" == "" goto gotWebCreamHome
echo Environment variable AXIS_HOME must be set to point to WebCream installation directory
goto eof
:gotWebCreamHome
rem Add your jars that are not stored in wcapps/lib here
set APP_CLASSPATH=
rem Add all additional libs from lib directory to classpath
for %%f in ("%AXIS_HOME%\lib\*.jar") do call "%AXIS_HOME%\bin\_addlib.bat" %%f
for %%f in ("%AXIS_HOME%\lib\*.zip") do call "%AXIS_HOME%\bin\_addlib.bat" %%f
set CLASSPATH=%WC_CLASSPATH%;%APP_CLASSPATH%;%CLASSPATH%
rem WARNING: This echo can hault clientAgent.bat because we are currently not reading input/output from batch files
rem echo CLASSPATH=%CLASSPATH%
:eof
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?