我正在编写一个程序,通过TCP连接发送从OpenCV窗口捕获的图像,使用Qt库设置连接等。
我必须使用函数(下面),它们都在发送文本或字节数组。我遇到的问题是另一端如何判断进来的数据是纯文本还是包含图像的数组。有没有内置的方法来做到这一点,或者我需要在数据的开头放一个字节来告诉接收器什么数据来了?我已经将数组长度放在序列化图像数据的开头。
void Screenshot_controller::sendText(std::string textToSend)
{
if(connectionMade)
{
std::string endLine = "\r\n";
textToSend = textToSend + endLine;
const char * textChar = textToSend.c_str();
sendSocket->write(textChar);
sendSocket->flush();
qDebug() << "Text Sent from Server";
}
}
void Screenshot_controller::sendData(QByteArray dataToSend)
{
if(connectionMade)
{
sendSocket->write(dataToSend);
sendSocket->flush();
qDebug() << "Data Sent from Server";
}
}
答案 0 :(得分:2)
您需要自己定义协议,无论是使用字节,字符串,JSON标头还是任何其他方法。 Tcp套接字允许您传输数据,但不关心数据是什么;它取决于你处理它。