使用mfc获取进程网络统计信息

发布于 2024-10-08 12:25:08 字数 155 浏览 0 评论 0原文

现在我正在开发一个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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧城空念 2024-10-15 12:25:08

您可以使用 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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文