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 否则,无法执行安迪板命令
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。