gpt4 book ai didi

android 打开 ("/dev/input/event1", O_RDWR);权限被拒绝?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:43:08 25 4
gpt4 key购买 nike

我想将触摸屏事件写入‘/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,但我对“权限被拒绝”感到困惑。

最佳答案

我添加代码

apkRoot="chmod 777 /dev/input/event1";
RootCommand(apkRoot);"

而且效果很好。

关于android 打开 ("/dev/input/event1", O_RDWR);权限被拒绝?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40543125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com