作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
最佳答案
如果您知道如何在 C# 中读取文件,并且您的计算机启用了 ACPI,您也许能够读取文件
/proc/acpi/thermal_zone/THRM/temperature
在其他 Linux 版本上它可能是
/proc/acpi/thermal_zone/THM0/temperature
当然,您必须在 Linux 上使用 mono 来运行它。
using System;
using System.IO;
using System.Text;
class Test
{
public static void Main()
{
string path = @"/proc/acpi/thermal_zone/THRM/temperature";
if (!File.Exists(path))
{
Console.WriteLine("Could not find "+path);
return;
}
string readText = File.ReadAllText(path);
Console.WriteLine(readText);
}
}
关于c# - 如何在 Linux 上获取 CPU 温度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9444202/
我是一名优秀的程序员,十分优秀!