C

Chirag's Swaranjali

A nice blog in Gujarati which takes to ride

  • Rated1.9/ 5
  • Updated 5 Years Ago

CPU temperature programmatically

Updated 5 Years Ago

CPU Temperature Programmatically
public static float cpuTemperature() { Process process; try { process = Runtime.getRuntime().exec(“cat sys/class/thermal/thermal_zone0/temp”); process.waitFor(); BufferedReader reader =…
Read More