How To stop an Executed Jar file

前端 未结 9 1843
时光说笑
时光说笑 2021-02-03 23:20

It feels like a dumb question to ask, but i cant seem to figure it out. when i run a *.jar file on windows it doesnt apears in the taskmanager processes. how can i terminate it

9条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-04 00:21

    You can identify the process in taskmanager by looking for "java" or "javaw" processes. The problem will be in case you are running more than one java processes. If you are able to identify your process, simply kill/end it.

    Other way around:

    Run

    jps -lv
    

    which shows PIDs and command lines of all running Java processes. Determine PID of the task you want to kill. Then use command:

    taskkill /PID 
    

    to kill the your jar process.

提交回复
热议问题