代码中的 ADB 命令

发布于 2024-10-06 02:23:55 字数 327 浏览 3 评论 0原文

有没有办法运行 adb 命令,例如

adb 获取状态

我在 eclipse 中编写的代码中的

例如

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    testADB();
}

,在 testADB() 中运行一些 adb 命令?

Is there a way to run adb commands like

adb get-state

in the code I write in eclipse

For e.g.

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    testADB();
}

and in testADB() run some adb commands?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

独﹏钓一江月 2024-10-13 02:23:56

Adithya,我相信您正在尝试以编程方式删除 adb 命令。检查此

Adithya , I believe you are trying to drop adb commands programmatically.Check this link.

败给现实 2024-10-13 02:23:56

由于权限和安全模型的原因,并非字面上的意思。消费类手机上的 usb adb 守护进程以比普通应用程序稍高的权限运行,因此接受它们的命令将是一个安全漏洞。

然而,正如其他人指出的那样,可能有其他方法来获取某些类型的数据。

Not literally, due to permissions and the security model. The usb adb daemon on a consumer phone runs with slightly higher privileges than ordinary applications, so accepting commands from them would be a security hole.

However as others have pointed out, there may be alternative means to obtain some kinds of data.

爱已欠费 2024-10-13 02:23:56

您可能可以使用 ddmlib.jar 为此。

You can probably use some of the classes in ddmlib.jar for that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文