使用 java 发送 CTRL B

发布于 2024-08-17 22:57:54 字数 115 浏览 5 评论 0原文

我正在通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

染墨丶若流云 2024-08-24 22:57:54

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文