Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to start a jar file with a *.bat file so that after it executes it detaches from the terminal window (command prompt). Is this possible? If so, how?

Thanks!

share|improve this question

2 Answers

up vote 8 down vote accepted

java.exe will always display a terminal window, you need to use javaw.exe instead:

start javaw -jar myjarfile.jar
share|improve this answer
This worked nicely. Thank you! :) – user290043 Apr 21 '11 at 12:55
start /B java -jar myjarfile.jar
share|improve this answer
window will remain open until main thread won't finish its execution – Jigar Joshi Apr 21 '11 at 12:20
@Jigar: I suppose I didn't exactly understand his requirements. Hmm... – Adam Paynter Apr 21 '11 at 12:23
Still its not satisfying it. – Jigar Joshi Apr 21 '11 at 12:25
@Jigar: What is it not satisfying? Could you please edit the question to clarify what he is asking for? – Adam Paynter Apr 21 '11 at 12:28
Check the a_horse's answer – Jigar Joshi Apr 21 '11 at 12:30
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.