How to find the process id of a running Java process on Windows? And how to kill the process alone?

后端 未结 8 1705
庸人自扰
庸人自扰 2021-01-30 21:59

I want to kill the particular Java process in Windows, like in Linux (ps -aux to get processid and then kill processid to kill the process).

8条回答
  •  执笔经年
    2021-01-30 22:24

    You can also find the PID of a java program with the task manager. You enable the PID and Command Line columns View -> Select Columns and are then able to find the right process.

    Your result will be something like this : enter image description here

提交回复
热议问题