我已经根植了我的模拟器android设备,现在想要执行以下系统调用:
mount -o rw,remount / system
我的代码是:
Runtime.getRuntime().exec( "su -c mount -o rw,remount /system" );
但它没有用。
由于
答案 0 :(得分:1)
试试这个:
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 Manifest中获得以下权限:
<uses-permission android:name="android.permission.ACCESS_SUPERUSER"/>