我是Android新手。我試圖運行一個shell命令來重命名系統中的文件。我有root權限。如何在Android應用程序中運行重命名shell命令(已過濾)
shell命令:
$ 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");
}
我確定有錯誤信息或類似的東西......你爲什麼不分享你的問題? – mthmulders 2013-04-09 10:26:18