問題描述:
進入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();
}
這個問題自己解決了,之前一直給的權限是燈的節點 chomd 777 .../led
之後給brighness權限就可以用apk點亮了,chmod 777 .../led/brightness