在Android程序中运行Linux终端命令

发布于 2024-12-04 19:01:46 字数 167 浏览 1 评论 0原文

我正在开发一个小应用程序,可以将我的 Android 手机中的目录与我的笔记本电脑中的目录同步。我对手机进行了 root 操作,并在其中安装了 rsync,以便同步手机和笔记本电脑上的目录。我手动检查了它,一切似乎都正常(我能够将手机的目录与我的笔记本电脑同步)。现在我想以编程方式执行此操作。我该怎么做?有什么想法吗?

I am developing a small app that would synchronize a directory present in my android phone with that of my laptop. I rooted my phone and also installed rsync in that so as to synchronize the directories across my phone and laptop. I checked it manually and everything seems working ( I am able to synchronize phone's directory with my laptop ). Now i would like to do this programmatically. How can i do this? Any ideas?

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

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

发布评论

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

评论(1

你列表最软的妹 2024-12-11 19:01:46

您可以使用类似以下内容:

Process process = Runtime.getRuntime().exec("/system/bin/ls");

在 Android 应用程序中运行本机命令。

检查 http://gimite.net/en/index。 php?运行%20native%20executable%20in%20Android%20App

You can use something like:

Process process = Runtime.getRuntime().exec("/system/bin/ls");

for running native commands in Android app.

Check http://gimite.net/en/index.php?Run%20native%20executable%20in%20Android%20App

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