runmbs.bat

来自「java学习的好范例」· Batch 代码 · 共 15 行

BAT
15
字号
@ECHO OFF
REM  If your system complains that it cannot find java, you
REM  should either update your PATH environment variable to
REM  include the directory that contains the java executable
REM  or modify the command below to specify the full path name.
REM  For example, C:\jdk1.2.2\bin\java.exe -classpath ...

if "%1"=="" goto runGUI
java -classpath .;.\mbsbb.jar;.\mbsgui.jar %1
goto end

:runGUI
java -classpath .;.\mbsbb.jar;.\mbsgui.jar MBSGUI

:end

⌨️ 快捷键说明

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