我正在尝试运行jstat来监视GC。我使用vmid命令得到jps

> jps
18928 GCTest


但是当我尝试像这样运行jstat时:

>jstat -gc <vmid> 18928
The system cannot find the file specified.


我收到消息The system cannot find the file specified.。语法似乎很好。我有什么错误吗?

最佳答案

这样称呼它,这应该可以工作:

jstat -gc 18928

09-27 05:13