如何使用 Java 获取外部进程的内存和 CPU 使用情况?
我需要获取机器上运行的某些进程(不是 Java 进程)的内存和 CPU 使用情况的信息。
我怎样才能做到这一点?
I need to get info for memory and CPU usage of some process running on the machine (not the Java process).
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它依赖于平台,但本质上使用 Runtime.getRuntime() 来执行适当的命令、捕获其输出并解析它以获取所需的数据。
It's platform dependent, but essentially use
Runtime.getRuntime()
to execute the appropriate command, capture its output and parse it for the data you need.如果我没记错的话,
Runtime.getRuntime
适用于虚拟机而不是物理机。你要问的是获取物理机信息(即CPU)。If I'm not mistaken
Runtime.getRuntime
is for the virtual machine and not the physical. What you are about asking is getting the physical machine information (meaning the CPU).