在cmd上运行jar文件的批处理文件

时间:2016-06-27 08:50:44

标签: batch-file cmd

道歉如果重复,我想从命令提示符运行一个jar文件,所以不是去特定的路径我可以创建一个批处理文件, 只需双击批处理文件即可完成任务, 我在[1]发现了一些内容:Run a Command Prompt command from Desktop Shortcut但是在我的情况下不起作用,我想运行java -jar squirrel-sql.jar

我想制作一个批处理文件:

1)打开cmd.exe

2)在该命令提示符下运行桌面上的java -jar squirrel-sql.jar

3)打开窗口,以便我可以运行其他命令 我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

将以下内容另存为 squirrel.bat

java -jar squirrel-sql.jar

REM /P causes SET to prompt and wait for Enter.
REM The underscore is used to ensure that "sure" is not already
REM an environment variable.
set /p _sure="Do you want to exit? [press Enter]"

REM /I causes a case-insensitive comparison
if /I NOT "_sure"=="y" (
  REM /B exits the batch script but not the CMD window
  exit /b
) else (
  REM Any other modifications
)