?? runnit.bat
字號:
@echo off@REM ==================================================@REM runnit.bat for Win32@REM ==================================================@set DEF_PORT=434@REM Configurable part (AGLET_EXPORT_PATH and AGLET_PATH are optional)@REM set AGLET_HOME=C:\Aglets1.1beta1@REM set AGLET_PATH=<';' separated pathlist for "aglets.class.path">@REM AGLET_EXPORT_PATH is obsolete@IF "%AGLET_EXPORT_PATH%"=="" GOTO SKIP_MSG @echo The obsolete variable "AGLET_EXPORT_PATH" is set. @echo This will be used to specify the public root for backward @echo compatibility. Please see the documentation for more detail.:SKIP_MSG@IF "%OS%"=="Windows_NT" setlocal@set PROGNAME=%0@set DEF_PORT=434@IF "%HOME%"=="" goto ERROR1@IF "%AGLET_HOME%"=="" goto ERROR2@IF NOT EXIST %AGLET_HOME%\lib\aglets.jar goto ERROR3@IF "%JAVA%"=="" set JAVA=java.exe@IF "%AGLETS_POLICY%"=="" set AGLETS_POLICY=%HOME%\.aglets\security\aglets.policy@REMset NOJIT=FOR %%I IN ( %1 %2 %3 %4 %5 %6 %7 ) DO IF "%%I"=="-nojit" set NOJIT="-nojit":LOOP%JAVA% -oss2000 %NOJIT% -classpath %AGLET_HOME%\lib\aglets.jar;%CLASSPATH% -Dprogram-name=%PROGNAME% -Duser.home=%HOME% -Daglets.home=%AGLET_HOME% -Daglets.class.path=%AGLET_PATH%;%AGLET_HOME%\public -Daglets.export.path=%AGLET_EXPORT_PATH% -Djava.policy=%AGLETS_POLICY% ServerApp -defaultport %DEF_PORT% %1 %2 %3 %4 %5 %6 %7 %8 %9if ERRORLEVEL 1 GOTO EXITGOTO LOOP@REM =====@REM ERROR@REM =====:ERROR3echo Your AGLET_HOME[=%AGLET_HOME%] is wrong!GOTO EXIT:ERROR2echo Please set AGLET_HOME environment variable!GOTO EXIT:ERROR1echo Please set HOME environment variable!echo 'A directory for aglets named ".aglets" will be created under the directory'GOTO EXIT:EXIT@IF "%OS%" == "Windows_NT" endlocal
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -