我正在尝试读取文件“cpuinfo_cur_freq”以检索我的根 Galaxy SII 的当前工作频率。我已经使用了一些这样的代码
final Runtime runtime = Runtime.getRuntime();
try {
runtime.exec("su"); //or whatever command.
}
catch (IOException e) {
e.printStackTrace();
}
向我的应用程序添加超级用户权限,但我仍然无法访问该文件。这是错误
W/System.err(5295):java.io.FileNotFoundException:/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq:打开失败:EACCES(权限被拒绝)
你可以帮帮我吗 ?