我正在尝试写“/ sys / devices / virtual / timed_output / vibrator / amp”文件。
我可以读得很好,问题是当我试着写它时。
这是我的代码:
public static void writeValue(String filename, String value) {
//FileOutputStream fos = null;
DataOutputStream os = null;
try {
/*fos = new FileOutputStream(new File(filename), false);
fos.write(value.getBytes());
fos.flush();*/
Process p;
p = Runtime.getRuntime().exec("su");
os = new DataOutputStream(p.getOutputStream());
os.writeBytes(value + " > " + filename + "\n");
os.writeBytes("exit\n");
Log.w(TAG, value + " >> " + filename);
os.flush();
} catch (IOException e) {
Log.w(TAG, "Could not write to " + filename);
} finally {
if (os != null) {
try {
os.close();
} catch (IOException e) {
Log.d(TAG, "Could not close " + filename, e);
}
}
}
}
我总是从Log.w(TAG, "Could not write to " + filename);
我该如何处理?我必须使用一些权限吗?是否全部重新设置以匹配root访问权限?
答案 0 :(得分:2)
普通SDK应用程序只能读取系统的该部分。您将需要root设备,并在su
shell中执行命令以在那里写入。
此外,amp
文件并非在所有设备上都存在。
答案 1 :(得分:0)
os.writeBytes(value + " > " + filename + "\n");
错了。尝试
os.writeBytes("echo '"+value + "' > " + filename + "\n");
或
os.writeBytes("echo -n '"+value + "' > " + filename + "\n");