Android:我可以在我的应用程序中使用 adb 命令吗?
全部 这是我的问题,我想在我的应用程序中启动一个 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:权限被拒绝 我的问题出在哪里?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该使用 Context.startInstrumentation,而不是 adb。
例如,从您的活动中运行
You should use Context.startInstrumentation, instead of adb.
For example, from your Activity, run
简短的回答 - 不。答案很长,有点。
“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.已经有一个用于此目的的 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.