如何像终端一样使用Android SDK执行命令?
我想在 Android 中开发一个终端应用程序。
在 C# 中,我们有:
System.Diagnostics.Process.Start("path of aplication")
就像直接运行一个程序,因为每个命令都是 Windows 中的一个程序。我不知道它在 Linux 中是如何工作的。
I want to develop a terminal app in Android.
In C#, we have:
System.Diagnostics.Process.Start("path of aplication")
Its like running a program directly because each command is a program in Windows. I don't know how it works in Linux.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 ProcessBuilder 创建操作系统进程。
Use ProcessBuilder to create OS processes.
我找到了其他解决方案,感谢所有人
http:// saurabh-nigam.blogspot.com/2010/10/running-android-native-code.html
这个项目做同样的事情:https://github.com/gimite/android-native-exe-demo
I find other solution, thank for all guys
http://saurabh-nigam.blogspot.com/2010/10/running-android-native-code.html
this project make the same: https://github.com/gimite/android-native-exe-demo