我是安卓新手。我正在尝试运行 shell 命令来重命名系统中的文件。我有它的root访问权限。
外壳命令:
$ su
# mount -o remount,rw /system
# mv system/file.old system/file.new
我已经尝试过了,但不起作用:
public void but1(View view) throws IOException{
Process process = Runtime.getRuntime().exec("su");
process = Runtime.getRuntime().exec("mount -o remount,rw /system");
process = Runtime.getRuntime().exec("mv /system/file.old system/file.new");
}