私はAndroidが初めてです。システム内のファイルの名前を変更するシェル コマンドを実行しようとしています。私はそれへのルートアクセス権を持っています。
シェル コマンド:
$ 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");
}