如何在 Ruby 套接字中发送 NULL?
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了自己的答案...问题不是发送 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)