Java:向处理器添加监听器
如何向计算机处理器添加监听器?我希望鼠标光标在处理速度较高时发生变化。
how can I add a listener to the computer's processor? I want the mouse cursor to change when the processing is hight.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将不得不使用本机代码来获取 CPU 信息。 这是一篇关于执行此操作的文章。
您必须编写一个类,然后使用该本机调用并为侦听器提供您想要的 API。
编辑:
嗯...您也可以查看 http://support.hyperic.com/display /SIGAR/Home。
You are going to have to drop to native code to get the CPU info. Here is an article on doing that.
You would have to write a class that then makes use of that native call and provides the API you want for the listener.
Edit:
Hmmm... you might also check out http://support.hyperic.com/display/SIGAR/Home.