Android:我可以在我的应用程序中使用 adb 命令吗?

发布于 2024-10-21 17:06:28 字数 571 浏览 7 评论 0 原文

全部 这是我的问题,我想在我的应用程序中启动一个 android TestProject,但我不知道如何启动,我发现我可以使用命令启动它,例如“adb shell am Instrument -w com.demo.test/android .test.InstrumentationTestRunner” 所以我尝试在我的应用程序中使用:Runtime.getRuntime().exec("adb shell am Instrument -w com.demo.test/android.test.InstrumentationTestRunner");但是有:

03-15 02:24:42.246: WARN/System.err(3597): java.io.IOException: 运行 exec() 时出错。命令:[adb,shell,am,instrument,-w,com.demo.test/android.test.InstrumentationTestRunner] 工作目录:null 环境:null …… 03-15 02:24:42.246:WARN / System.err(3597):引起:java.io.IOException:权限被拒绝 我的问题出在哪里?

all
here is my problem,I want to start an android TestProject in my app,but I don't konw how,and I found that I can start it with command ,e.g. "adb shell am instrument -w com.demo.test/android.test.InstrumentationTestRunner"
So I have tried use in my app :Runtime.getRuntime().exec("adb shell am instrument -w com.demo.test/android.test.InstrumentationTestRunner");but have:

03-15 02:24:42.246: WARN/System.err(3597): java.io.IOException: Error running exec(). Command: [adb, shell, am, instrument, -w, com.demo.test/android.test.InstrumentationTestRunner] Working Directory: null Environment: null
.....
03-15 02:24:42.246: WARN/System.err(3597): Caused by: java.io.IOException: Permission denied
where is my problem?

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

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

发布评论

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

评论(3

澜川若宁 2024-10-28 17:06:29

您应该使用 Context.startInstrumentation,而不是 adb。
例如,从您的活动中运行

startInstrumentation(new ComponentName("com.example.aatg.tc.test", "android.test.InstrumentationTestRunner"), null, null);

You should use Context.startInstrumentation, instead of adb.
For example, from your Activity, run

startInstrumentation(new ComponentName("com.example.aatg.tc.test", "android.test.InstrumentationTestRunner"), null, null);
梦里泪两行 2024-10-28 17:06:29

简短的回答 - 不。答案很长,有点。

“adb shell”命令后面的部分是执行的部分,很像 Runtime.getRuntime().exec(...)

您可以通过使用来实现您想要的结果Runtime.getRuntime().exec("instrument -w com.demo.test/android.test.InstrumentationTestRunner")。我自己没有使用过它,但您可能需要将参数作为数组传递。检查 文档

Short answer - no. Long answer, kinda.

The part after the 'adb shell' command is the part that is executed, much like Runtime.getRuntime().exec(...)

You may be able to achieve what you're after by using Runtime.getRuntime().exec("instrument -w com.demo.test/android.test.InstrumentationTestRunner"). I've not used it myself, but you may need to pass the arguments in as an array. Check the documentation.

云淡风轻 2024-10-28 17:06:28

已经有一个用于此目的的 API, Context.startInstrumentation:

这就是 shell 命令的实现方式。通过启动 shell 命令,您不能做比在您自己的进程中做的更多的事情。此外,SDK 中没有任何 shell 命令,因此您使用它执行的任何操作都可能在不同设备或平台版本上的某个时刻中断。

There is already an API for this, Context.startInstrumentation:

This is how the shell command is implemented. You can't do anything more by launching a shell command than you can do in your own process. Also, no shell commands are part of the SDK, so anything you do with it is likely to break at some point on different devices or versions of the platform.

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