我正在尝试在“ / 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访问权限?

最佳答案

os.writeBytes(value + " > " + filename + "\n");


是错的。尝试

os.writeBytes("echo '"+value + "' > " + filename + "\n");


要么

os.writeBytes("echo -n '"+value + "' > " + filename + "\n");


关于java - 如何在/sys/上写?安卓系统,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15692783/

10-09 02:57