在android应用程序中执行adb命令时出现问题

发布于 2024-12-25 03:41:39 字数 467 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放手` 2025-01-01 03:41:39

您的设备应该已获得 root 权限并

<uses-permission android:name="android.permission.SET_TIME"/> 

在清单中

使用以下代码进行设置

Process process = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(process.getOutputStream());
os.writeBytes("date -s 20120419.024012; \n");

your device should be rooted and set

<uses-permission android:name="android.permission.SET_TIME"/> 

in manifest

use the following code

Process process = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(process.getOutputStream());
os.writeBytes("date -s 20120419.024012; \n");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文