Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Close a batch file after running the jar file

I wrote a batch file that runs a jar file. But after it runs the jar file the batch file doesn't close until the jar file is also closed. How can I close the command screen when it opens the jar file?( when the jar file is open I want to close the command screen.)

My batch file :

@echo off
java\jre7\bin\javaw.exe -jar ".\sample.jar"
exit
like image 507
Ersin Gülbahar Avatar asked Sep 07 '12 08:09

Ersin Gülbahar


2 Answers

Use the start command before the rest of the command.

like image 194
MByD Avatar answered Oct 20 '22 18:10

MByD


I have recently had this problem and for someone other in future, complete and simple way is here:

@echo off
start javaw -jar "nameOfJar.jar"
exit

This starts jar and close CLI.

Important is the "start" command and the "javaw" command for windows environment.

like image 43
Androdos Avatar answered Oct 20 '22 20:10

Androdos