有 Qt 的 WebSocket 示例吗?
有 Qt 的 WebSocket 示例吗?
Is there an example WebSockets for Qt?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有 Qt 的 WebSocket 示例吗?
Is there an example WebSockets for Qt?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您还可以查看 QtWebSockets。 QtWebSockets 可用于客户端和服务器应用程序,并通过了 Autobahn 测试套件。
You can also have a look at QtWebSockets. QtWebSockets can be used both for client and server applications, and passes the Autobahn test suite.
QtWebKit 内部的 QWebView 支持使用 Web Sockets(来自 HTML5 标准)。我已经使用它们多次,没有任何问题。
QWebView inside of QtWebKit supports the use of Web Sockets (from the HTML5 standard). I have used them multiple times without any issue.
我创建了一个例子。以下是代码:
inspection_server.hpp:
inspection_server.cpp:
main.cpp:
以下是如何在 Web 浏览器中测试该代码:
这是一个很好的参考链接:
http://code.qt.io/cgit/ qt/qtwebsockets.git/tree/examples/websockets/echoserver
I have created an example. Here is the code:
inspection_server.hpp:
inspection_server.cpp:
main.cpp:
And here is how to test that in your Web browser:
This is a good link for reference:
http://code.qt.io/cgit/qt/qtwebsockets.git/tree/examples/websockets/echoserver