SU로 SuperUser 권한 흭득.
터미널과 같은 명령어를 쓸 수 있다.
public static void doCmds(String cmds) throws Exception {
Process process = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(process.getOutputStream());
os.writeBytes(cmds+"\n");
os.writeBytes("exit\n");
os.flush();
os.close();
process.waitFor();
}