问题描述:
进入adb shell 直接使用 echo 1 > /sys/class/leds/white:pd27:led3/brightness 可行
用以下程序进行命令调用,却不成功,white:pd27:led3这个节点的权限给到最高了,
apk也获取了system权限 在AndroidManifest.xml中添加android:sharedUserId="android.uid.system"为何还是不成功,有大神能找出原因吗
Process process = null;
DataOutputStream dos = null;
try {
process = Runtime.getRuntime().exec("sh");
dos = new DataOutputStream(process.getOutputStream());
dos.writeBytes("echo 1 > /sys/class/leds/white:pd27:led3/brightness");
dos.flush();
try{
process.waitFor();
}catch (InterruptedException e){}
dos.close();
} catch (IOException e) {
e.printStackTrace();
}