在android应用程序中执行adb命令时出现问题
我在 Android 移动应用程序中执行 adb 命令时遇到问题,它显示命令的环境错误。任何人都可以研究一下这一点并建议使用应用程序执行命令的正确方法。
下面是我正在使用的代码
try {
Runtime.getRuntime().exec("./adb shell date -s 20100431.121212");
} catch (IOException e1) {
e1.printStackTrace();
}
,它给出了以下错误:
: ERROR :Error running exec(). Command: [./adb, shell, date, -s, 20100431.121212] Working Directory: null Environment: null
提前致谢。
I am having problem in executing adb commands with in application in android mobile, It is showing environment error for the command. Can any one please lookinto this and suggest the correct way to execute the command with application.
below is the code I am using
try {
Runtime.getRuntime().exec("./adb shell date -s 20100431.121212");
} catch (IOException e1) {
e1.printStackTrace();
}
It is giving the following below error:
: ERROR :Error running exec(). Command: [./adb, shell, date, -s, 20100431.121212] Working Directory: null Environment: null
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的设备应该已获得 root 权限并
在清单中
使用以下代码进行设置
your device should be rooted and set
in manifest
use the following code