关于java:复制root设备中的系统文件

Copy system files in rooted android device

我要将文件和目录从/root目录复制到SD卡中的其他文件夹。所以,我做了很多搜索,但找不到有用的答案。

我执行su命令如下:

1
Process pp  = Runtime.getRuntime().exec("su cp"+originDir+" "+targetDir);

任何帮助都会很好。谢谢。


尝试在Android上使用RootTools library。(roottools:作为根运行命令的库)。

roottools为根开发人员提供了一个标准化的set of tools,用于rooted applications的开发。

您可以在这里找到最新版本:https://github.com/stericson/roottools/releases

您可以在我们的wiki上找到更多信息:https://github.com/stericson/roottools/wiki

对于更精简的库,请查看rootshell:https://github.com/stericson/rootshell网站

希望这对你有帮助。