Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在通过 Telnet 连接(来自 Apache 的 Telnet 客户端)与设备通话,该设备要求我们发送Ctrl+B以进入特定模式。我怎样才能通过 Java 发送它?
Ctrl+B只是字节2。
2
给定一个OutputStream out, out.write(2);。
OutputStream out
out.write(2);
功能键等将具有转义序列,确切的序列由您协商要模拟的终端确定。