通过应用程序在 Android 设备中执行挂载命令

Executing mount command in Android device via application

我已经 root 了我的模拟器 android 设备,现在想执行以下系统调用:

mount -o rw,remount /system

我的代码是:

Runtime.getRuntime().exec( "su -c mount -o rw,remount /system" );

但是没用。

谢谢

试试这个:

Runtime.getRuntime().exec( new String[]{"su", "-c", "mount -o remount,rw /system"} );

也试试这个:

Runtime.getRuntime().exec( new String[]{"su", "-c", "mount -o remount rw /system"} );

此外,您的 Android 清单中需要以下权限:

<uses-permission android:name="android.permission.ACCESS_SUPERUSER"/>