使用 java 发送 CTRL B
我正在通过 Telnet 连接(来自 Apache 的 Telnet 客户端)与设备通信,该设备要求我们发送 Ctrl+B 才能进入某种模式。我如何通过 Java 发送它?
I am talking to a device via a Telnet connection (Telnet client from Apache), the device requires us to send a Ctrl+B to go into a certain mode. How can I send that via Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ctrl+B 只是字节
2
。给定一个OutputStream out,
out.write(2);
。功能键等将具有转义序列,具体的序列由您协商模拟的终端决定。
Ctrl+B is just the byte
2
.Given an
OutputStream out
,out.write(2);
.Function keys and the like will have escape sequences, exactly what sequence is determined by which terminal you have negotiated to emulate.