在 Qt 中发送整数

发布于 2024-12-12 03:16:55 字数 95 浏览 0 评论 0原文

谁能告诉我如何打开 TCP 连接并同时发送数据? 我打开连接如下: 套接字-> conectohost(主机、端口) 我想随打开连接的命令一起发送 6 个整数。 非常感谢

anyone can tell me how to open a TCP connection and send data at the same time?
I open the connection as follows:
socket-> conectohost (host, port)
I would like to send along with the order to open connection 6 integers.
thank you very much

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

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

发布评论

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

评论(2

[浮城] 2024-12-19 03:16:56
int array[] = {1,2,3,4,5,6};
int array_elements = sizeof(array) / sizeof(int);

socket->connectToHost("example.com", 12345);
if(socket->waitForConnected(1000)) {
    qDebug("Connected.");
    for(int n = 0; n < array_elements; n++)
        socket->write((char*)(array + n * sizeof(int)), sizeof(int));
    qDebug("6 integers sent. Eat that.");
    socket->disconnectFromHost();
} else {
    qDebug("Timeout.");
}
int array[] = {1,2,3,4,5,6};
int array_elements = sizeof(array) / sizeof(int);

socket->connectToHost("example.com", 12345);
if(socket->waitForConnected(1000)) {
    qDebug("Connected.");
    for(int n = 0; n < array_elements; n++)
        socket->write((char*)(array + n * sizeof(int)), sizeof(int));
    qDebug("6 integers sent. Eat that.");
    socket->disconnectFromHost();
} else {
    qDebug("Timeout.");
}
心的位置 2024-12-19 03:16:55

据我所知,需要等待连接建立后才能通过QTcpSocket发送数据。这样的组合在您的用例中有效吗?

socket->connectToHost(...);
if( socket->waitForConnected() ) {
    socket->write("my_data");
}

As far as I know, you need to wait for the connection to be established before you can send data via QTcpSocket. Would a combination like this work in your usecase?

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