AdbLibTest icon indicating copy to clipboard operation
AdbLibTest copied to clipboard

How to send CTRL+C for stream logcat

Open webserveis opened this issue 6 years ago • 3 comments

When starting logcat and then wanting to stop reading it, similar ctrl + c in the terminal

webserveis avatar Jun 11 '18 14:06 webserveis

Have you tried writing the EXT control character to the stream? "\x03"?

pauledwardtang avatar Sep 07 '18 21:09 pauledwardtang

@pauledwardtang thanks, is what I was looking for some time

private byte[] stopStream = {0x03};
stream.write(stopStream);

webserveis avatar Sep 12 '18 12:09 webserveis

Thank you

Cl0uddotc0m avatar Oct 20 '20 13:10 Cl0uddotc0m