我想将触摸屏事件写入'/ dev / input / event1',但它运行'open(“/ dev / input / event1”,O_RDWR);'拒绝许可。我的手机已经扎根了,我用代码获得了root:
String apkRoot="chmod 777 "+getPackageCodePath();
RootCommand(apkRoot);
public static boolean RootCommand(String command)
{
Process process = null;
DataOutputStream os = null;
try
{
process = Runtime.getRuntime().exec("su");
os = new DataOutputStream(process.getOutputStream());
os.writeBytes(command + "\n");
os.writeBytes("exit\n");
os.flush();
process.waitFor();
} catch (Exception e)
{
Log.d("*** DEBUG ***", "ROOT REE" + e.getMessage());
return false;
} finally
{
try
{
if (os != null)
{
os.close();
}
process.destroy();
} catch (Exception e)
{
}
}
Log.d("*** DEBUG ***", "Root SUC ");
return true;
}
它表明我的应用程序确实获得了root权限,但我对'权限被拒绝'感到困惑。
答案 0 :(得分:1)
我添加了代码
apkRoot="chmod 777 /dev/input/event1";
RootCommand(apkRoot);"
它工作正常。