zoukankan      html  css  js  c++  java
  • 获取网卡速率,cpu使用率

       static string NetworkName = new PerformanceCounterCategory("Network Interface").GetInstanceNames()[0];//获取网卡名称
            PerformanceCounter NetworkR = new PerformanceCounter("Network Interface", "Bytes Received/sec", NetworkName);//获取网络接收速度
            PerformanceCounter NetworkS = new PerformanceCounter("Network Interface", "Bytes Sent/sec", NetworkName);
            PerformanceCounter cpu = new PerformanceCounter("Processor", "% Processor Time", "_Total");///CPU性能计数器
    
    
    
      toolStripStatusLabel3.Text = "接收:" + (NetworkR.NextValue() / 1024 / 1024).ToString("0.00") + "mb/s  发送:" + (NetworkS.NextValue() / 1024 / 1024).ToString("0.00") + "mb/s";
                toolStripStatusLabel5.Text = "CPU:" + cpu.NextValue().ToString("0") + "%";
  • 相关阅读:
    网络编程
    GUI编程
    Java数组
    Day24
    Day23
    Day22
    Day21
    Day20
    Day19
    Day18
  • 原文地址:https://www.cnblogs.com/qc-id-01/p/9922715.html
Copyright © 2011-2022 走看看