How To stop an Executed Jar file

前端 未结 9 1839
时光说笑
时光说笑 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:20

    Find the process id by jps command & and kill them by taskkill command.

    Note that "-f" is required with taskkill or it may just sent a termination signal not actually terminating it.

提交回复
热议问题