使用mfc获取进程网络统计信息
现在我正在开发一个MFC程序。我想知道的是进程接收/发送到网络的速度。假设我有一个名为chrome.exe的进程,它可能接收1008B/s,发送2987B/s。我知道我可以在 Win 7 资源监视器中得到我想要的东西。但我怎样才能在我的程序中获取这些数据呢? MFC或Win32api支持这个吗?
Now I'am working on a MFC program. What I want to know is the speed a process receive/send to the network. Suppose I have a process named chrome.exe, it may receive 1008B/s, send 2987B/s. I know I can get what I want in the Win 7 Resource Monitor. But how can I get those data in my program. Dose MFC or Win32api support this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 WMI:
监控性能数据
这个类可能就是您正在寻找的:
Win32_PerfFormattedData_Tcpip_NetworkInterface
从本机 C++/MFC 应用程序中,您将通过一些 COM 接口
玩得开心!
You can obtain this information, as well as a wealth of other performance data using WMI:
Monitoring Performance Data
This class is probably what you are looking for:
Win32_PerfFormattedData_Tcpip_NetworkInterface
From a native C++/MFC application, you'll access WMI through some COM interfaces
Have fun!