run.bat

来自「帮助你系统进入JAVA的学习中来」· Batch 代码 · 共 82 行

BAT
82
字号
@echo off
set TOPDIR=..\..

rem  This BAT script explains and carries out the process of compiling
rem  and running the stock example.  The important commands are
rem  summarized here:
rem
rem    javac -d ..\.. *.java
rem    rmic -d ..\.. examples.stock.StockServer examples.stock.StockApplet
rem    java examples.stock.StockServer
rem    appletviewer index.html

echo ************************************************************************
echo *
echo * This script goes through the complete process of compiling and
echo * running the stock example on your local machine.
echo *
echo * (The stock server is bundled with its own registry, so there
echo * is no need to create one.)
echo *
echo * To compile and run server, temporarily add root directory
echo * of these classes (..\..) to CLASSPATH...
echo *
@echo on
set ORIGCLASSPATH=%CLASSPATH%
set CLASSPATH=%TOPDIR%;%CLASSPATH%
@echo off

echo *
echo * Compile all Java sources files...
echo *
@echo on
javac -d %TOPDIR% *.java
@echo off

echo *
echo * Run rmic to generate stub and skeleton classes for StockServer
echo * StockApplet...
echo *
@echo on
rmic -d %TOPDIR% examples.stock.StockServer examples.stock.StockApplet
@echo off

echo *
echo * Start the server examples.stock.StockServer...
echo *
@echo on
start java examples.stock.StockServer
@echo off

echo *
echo * Please wait until a message appears in the server process's window
echo * indicating that it has been bound to the registry.
echo *
pause

echo *
echo * Restore the original CLASSPATH at this point, so that the appletviewer
echo * will not have any of these example classes locally available through
echo * CLASSPATH.  Therefore, it must load them through the codebase...
echo *
@echo on
set CLASSPATH=%ORIGCLASSPATH%
@echo off

echo *
echo * Start the appletviewer...
echo *
echo *---------------------------------------------------------------------
echo * NOTE: Expect a SecurityException -- ignore it if there is only one 
echo *---------------------------------------------------------------------
@echo on
appletviewer index.html
@echo off

echo *
echo * If all the preceding steps were successful, the server
echo * processes is still running.  You can manually destroy this window
echo * to clean up before running this script again.
echo *

⌨️ 快捷键说明

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