1
我想讀取文件「cpuinfo_cur_freq」retreiving當前我的根源銀河SII的工作頻率。我已經使用了一些這樣的代碼閱讀cpuinfo_cur_freq與根權限
final Runtime runtime = Runtime.getRuntime();
try {
runtime.exec("su"); //or whatever command.
}
catch (IOException e) {
e.printStackTrace();
}
向我的應用添加超級用戶權限,但仍然無法訪問該文件。這是錯誤
W/System.err的(5295):java.io.FileNotFoundException:/系統/設備/系統/ CPU/CPU0/CPU頻率/ cpuinfo_cur_freq:打開失敗:EACCES(拒絕)
你可以幫幫我嗎 ?