摘要: public static boolean RootCommand(String command) { Process process = null; DataOutputStream os = null; try { process = Runtime.getRuntime().exec("su"); os = new DataOutputStream(process.getOutputStream()); os.writeBytes(command + "\n"); ... 阅读全文
posted @ 2012-04-26 14:14 狂热与执着 阅读(271) 评论(0) 推荐(0) 编辑