美文网首页
cmd或shell如何执行adb shell之后的命令

cmd或shell如何执行adb shell之后的命令

作者: 卡农Lucas | 来源:发表于2016-11-30 22:00 被阅读0次

    1

    Process p = Runtime.getRuntime().exec(cmd);
    PrintWriter p = new PrintWriter(p.getInputStream());
    p.println("dir /c /d");

    2

    adb shell <cmd.txt

    3

    adb shell "am ba"

    相关文章

      网友评论

          本文标题:cmd或shell如何执行adb shell之后的命令

          本文链接:https://www.haomeiwen.com/subject/sygtmttx.html