I have Java 1.8.0 running in Windows. How can i start/stop this process in the Command Prompt?
Asked
Active
Viewed 570 times
0
-
It's very difficult to tell you how to start the program with the information you've given. The may be many command line arguments and it's impossible to guess what they are. See [this link](https://docs.oracle.com/javase/8/docs/technotes/guides/install/windows_jdk_install.html) for information on getting your Java command line setup. That will at least get you started. – stdunbar May 27 '19 at 18:41
2 Answers
1
not mine, check if it helps
taskkill /f /im jqs.exe
taskkill /f /im javaw.exe
taskkill /f /im java.exe

hemen
- 1,460
- 2
- 16
- 35
0
Ctrl + C in the command.
If you need exit elegantly, you need program for it. You can refer to apache's library for more.

Qingfei Yuan
- 1,196
- 1
- 8
- 12