时间:2021-07-01 10:21:17 帮助过:4人阅读
这个也有两个方法,一个是借助于外部工具stty(从busybox里来的),那么
预先把busybox工具放到android里:
adb push /data/local/tmp/ adb shell chmod 755 /data/local/tmp/busybox
然后,那就是在执行自己的命令之前执行busybox stt -onlcr。例如
adb shell ‘/data/local/tmp/busybox stty -onlcr; cat /default.prop‘ > local_output_file2
还有一种方法就是自己的C代码里,执行这一段:
#include <termios.h> if (isatty(STDOUT_FILENO)) { struct termios term; tcgetattr(STDOUT_FILENO, &term); cfmakeraw(&term); tcsetattr(STDOUT_FILENO, TCSANOW, &term); }
2. Windows这边才需要这个步骤。那就是不直接使用adb工具了,而是直接和adb工具所服务的5037端口打交道,发送命令,取得结果,这个具体的说起来有点啰嗦,如果是nodejs,那么用adbkit好了,其他的我没多看,大致就是
1. 向localhost:5037 发送host:transport:设备序列号 得到回答,如果是OKAY四个字那就到step2,否则就错误。 2. 继续向上述port发送shell:命令内容 得到回答,如果是OKAY四个字那就到step2,否则就错误。 然后从这个连接里能够读到原始的输出。
google终于把ADB输出的回车换行问题改掉了
标签: