如何在 Ruby 套接字中发送 NULL?

发布于 2024-07-13 12:50:03 字数 125 浏览 2 评论 0原文

我正在 Ruby Shoes 中开发套接字应用程序,并且想要向服务器发送消息。 服务器需要 XML 消息,然后是空 (0) 字符。

我怎样才能在 Ruby 的 TCP 套接字中发送它?

谢谢。

I'm working on a socket app in Ruby Shoes, and want to send a message to the server. The server expects the XML message, and then a null (0) character.

How can I send that in TCP Sockets in Ruby?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

贩梦商人 2024-07-20 12:50:03

我找到了自己的答案...问题不是发送 NULL,而是线程问题。

您可以将 NULL 作为字符串的一部分发送,只需将其连接到字符串的末尾...

NULL = "\000"

...
tc = tc + ""

tc = tc + NULL

Socket.send(tc, 0)

I found my own answer... The problem was not sending the NULL, it was a thread issue.

You can send a NULL as part of a string by just concatenating it on to the end of the string...

NULL = "\000"

...
tc = tc + "</endtag>"

tc = tc + NULL

Socket.send(tc, 0)

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