首页 > 代码库 > Android开发执行adb 命令行命令
Android开发执行adb 命令行命令
1.在Android开发中调用adb命令进行应用安装,将应用安装到 /system/app目录下
/** * install the app in use adb command,this style is silent * */ private void adbInstallTheAPP(){ //adb push core code String command = "cp" + "the android apk file path" + "/system/app"; Process process = null; DataOutputStream os = null; try { process = Runtime.getRuntime().exec("su");// the phone must be root,it can exctue the adb command os = new DataOutputStream(process.getOutputStream()); os.writeBytes(command + "\n"); os.writeBytes("exit\n"); os.flush(); } catch (Exception e) { e.printStackTrace(); } }
2.如果需要用adb reboot重启手机,可以使用下面命令
String command = "adb reboot";
注意:使用该adb 命令行 命令前提是 手机已经root 否则,无法执行安迪板命令
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。