QDataStream对QVector的序列化
最近发现QDataStream这个好东东,序列化发送数据很方便,与大家分享一下。
客户端:
line.h
#ifndef LINE_H
#define LINE_H
#include <QString> class Line
{
public:
Line(); public:
int pointX;
int pointY;
int pointZ; QString pointName; public:
void getPoint();
void setPoint(); }; #endif // LINE_H
line.cpp
#include "line.h" Line::Line()
{
} void Line::getPoint()
{ } void Line::setPoint()
{ }
myvector.h
#ifndef MYVECTOR_H
#define MYVECTOR_H #include <QVector>
#include <QDebug>
#include "line.h" class MyVector:public QVector<Line>
{
public:
MyVector(); friend QDataStream& operator <<(QDataStream &out,MyVector &myVector); friend QDataStream& operator >>(QDataStream &in,MyVector &myVector); int x;
}; class ChildVector:public MyVector
{
public:
ChildVector(); public:
friend QDataStream& operator <<(QDataStream &out,ChildVector &childVector); friend QDataStream& operator >>(QDataStream &in,ChildVector &childVector); int y;
int z;
int childData; }; #endif // MYVECTOR_H
myvector.cpp
#include "myvector.h" MyVector::MyVector()
{
} QDataStream& operator <<(QDataStream &out,MyVector &myVector)
{
out << quint32(myVector.size());
qDebug() <<"myVector---size()"<<myVector.size()<<endl; for (typename QVector<Line>::const_iterator it = myVector.begin(); it != myVector.end(); ++it)
{
out << it->pointName << it->pointX << it->pointY << it->pointZ;
qDebug()<<"it->pointName####"<<it->pointName<<"it->pointX$$$$$"<<it->pointX<<"it->pointY%%%%"<<it->pointY<<"it->pointZ^^^^^"<<it->pointZ<<endl;
}
out << myVector.x;
return out;
} QDataStream& operator >>(QDataStream &in,MyVector &myVector)
{
myVector.clear();
quint32 c;
in >> c;
myVector.resize(c);
for(quint32 i = ;i < c;++i)
{
Line tLine;
in >> tLine.pointName >> tLine.pointX >> tLine.pointY >> tLine.pointZ;
}
in >> myVector.x;
return in;
} ChildVector::ChildVector()
{ } QDataStream& operator <<(QDataStream &out,ChildVector &childVector)
{
qDebug() <<"myVector---size()"<<childVector.size()<<endl; MyVector *kk = &childVector;
out << *kk;
out << childVector.y << childVector.z<<childVector.childData;
return out;
} QDataStream& operator >>(QDataStream &in,ChildVector &childVector)
{
MyVector *kk = &childVector;
in << *kk;
in >> childVector.y >> childVector.z >> childVector.childData; return in;
}
tcpclient.h
#ifndef TCPCLIENT_H
#define TCPCLIENT_H #include <QObject>
#include <QDataStream>
#include <Qt/qtcpserver.h>
#include <Qt/qtcpsocket.h>
#include <Qt/qhostinfo.h>
#include <Qt/qhostaddress.h> #include "myvector.h" class TcpClient : public QObject
{
Q_OBJECT
public:
//explicit TcpClient(QObject *parent = 0);
TcpClient():m_iOut(&byteArrayWrite,QIODevice::WriteOnly)
{
m_nPort = ;
m_bStatus = false;
tcpClient = NULL; //设置数据流的版本,客户端和服务器端使用的版本要相同
m_iOut.setVersion(QDataStream::Qt_4_6);
//设置发送长度初始值为0
m_iOut<<(quint32);
} signals: public slots:
void slotGetStatus(); public:
void initConnection(QString ip);
void updata(); QDataStream m_iIn;
QDataStream m_iOut;
QByteArray byteArrayWrite; QTcpSocket *tcpClient; //MyVector myVector; QString m_sIpAddress;
int m_nPort;
bool m_bStatus;
}; #endif // TCPCLIENT_H
tcpclient.cpp
#include "tcpclient.h" //TcpClient::TcpClient(QObject *parent) :
// QObject(parent)
//{ //} void TcpClient::initConnection(QString ip)
{
m_sIpAddress = ip;
QHostAddress address;
address.setAddress(ip); if(tcpClient == NULL)
{
tcpClient = new QTcpSocket(this);
} tcpClient->abort(); tcpClient->connectToHost(address,); //connect(tcpClient,SIGNAL(readyRead()),this,SLOT(readData()));
//connect(tcpClient,SIGNAL(disconnected()),this,SLOT(slotDisconnect()));
//connect(tcpClient,SIGNAL(connected()),this,SLOT(sendData()));
m_bStatus = connect(tcpClient,SIGNAL(connected()),this,SLOT(slotGetStatus())); while(!m_bStatus)
{
initConnection(m_sIpAddress);
}
} void TcpClient::slotGetStatus()
{ } void TcpClient::updata()
{
//回到字节流起始位置
m_iOut.device()->seek();
//重置字节流长度
m_iOut << (quint32) (byteArrayWrite.size()-sizeof(quint32));
//往套接字缓存中写入数据,并发送
int writeBlock = tcpClient->write(byteArrayWrite); qDebug()<<"writeBlock******"<<writeBlock; byteArrayWrite.resize(); tcpClient->waitForReadyRead();
}
test.h
#ifndef TEST_H
#define TEST_H #include <QObject>
#include "tcpclient.h" class Test : public QObject
{
Q_OBJECT
public:
explicit Test(QObject *parent = ); signals: public slots:
void getData(); public:
TcpClient *tcpClt;
}; #endif // TEST_H
test.cpp
#include "test.h" Test::Test(QObject *parent) :
QObject(parent)
{
tcpClt = new TcpClient();
} void Test::getData()
{
QString ipAddress("192.168.154.128"); tcpClt->initConnection(ipAddress); ChildVector myVector; Line tLine;
for(int i = ;i < ;i++)
{
tLine.pointName = QString("test")+QString::number(i);
tLine.pointX = + i*;
tLine.pointY = + i*;
tLine.pointZ = + i*;
myVector.append(tLine);
} myVector.x = ;
myVector.y = ;
myVector.z = ;
myVector.childData = ; tcpClt->m_iOut << myVector; tcpClt->updata();
}
服务端接收:
line.h line.cpp,myvector.h myvector.cpp不再添加,同客户端
tcpserver.h
#ifndef TCPSERVER_H
#define TCPSERVER_H #include <Qt/qtcpserver.h>
#include <Qt/qtcpsocket.h>
#include <Qt/qhostinfo.h>
#include <Qt/qhostaddress.h>
#include <Qt/qnetworkinterface.h>
#include <QObject> #include "myvector.h" class TcpServer : public QObject
{
Q_OBJECT
public:
explicit TcpServer(QObject *parent = ,int port = ); ChildVector myVector; signals: public slots:
void readData();
//void deleteSlot();
void slotConnected(); private:
QTcpServer *m_pServer;
QTcpSocket *m_pTcpClientSocket; }; #endif // TCPSERVER_H
tcperver.cpp
#include "tcpserver.h" int GLOBAL_LENGTH = ; TcpServer::TcpServer(QObject *parent, int port) :
QObject(parent)
{
m_pServer = new QTcpServer(this);
if(m_pServer->listen(QHostAddress::Any,port))
{
qDebug()<<"listen Successfully!!!";
}
connect(m_pServer,SIGNAL(newConnection()),this,SLOT(slotConnected()));
} void TcpServer::slotConnected()
{
qDebug()<<"slotConnected!!!";
m_pTcpClientSocket = m_pServer->nextPendingConnection(); bool bConnect = connect(m_pTcpClientSocket,SIGNAL(readyRead()),this,SLOT(readData()));
//connect(m_pTcpClientSocket,SIGNAL(disconnected()),m_pTcpClientSocket,SLOT(deleteLater()));
qDebug()<<"bConnect"<<bConnect;
} void TcpServer::readData()
{
quint32 nextBlockSize = ;
QDataStream in(m_pTcpClientSocket);
in.setVersion(QDataStream::Qt_4_6);
quint32 bufferSize = m_pTcpClientSocket->bytesAvailable();
if(nextBlockSize == )
{
if(m_pTcpClientSocket->bytesAvailable()<sizeof(quint32))
{
return;
}
in>>nextBlockSize;
qDebug()<<"nextBlockSize:"<<nextBlockSize<<"m_pTcpClientSocket->bytesAvailable()"<<m_pTcpClientSocket->bytesAvailable();
} GLOBAL_LENGTH = nextBlockSize/sizeof(quint32); in >> myVector;
//qDebug()<<"-------------"<<myVector.x<<"@@@@@@@@@@"<<"myVector.size()#####"<<myVector.size()<<endl;
for(int i = ; i < myVector.size() ;i++)
{
qDebug()<<"***********"<<myVector.at(i).pointName<<"###";
qDebug()<<"***********"<<myVector.at(i).pointX<<"###";
qDebug()<<"***********"<<myVector.at(i).pointY<<"###";
qDebug()<<"***********"<<myVector.at(i).pointZ<<"###"<<endl;
} qDebug()<<"-------------"<<myVector.x<<"@@@@@@@@@@"<<"myVector.y#####"<<myVector.y<<"@@@@@@@@@@"<<"myVector.y#####"<<myVector.z<<"childData-----"<<myVector.childData<<endl;
if(nextBlockSize==0xFFFF)
{
return;
}
if(bufferSize < nextBlockSize)
{
return;
}
}
以上代码经过编译测试通过,希望对你有所帮助。
QDataStream对QVector的序列化的更多相关文章
- QT序列化操作(比较复杂和完善)
应用需求: 在网盘开发过程中有这样一个需求,即对文件版本进行控制,即记录文件版本的更替信息,这里说的更替信息仅仅是记录不同时刻的文件变化,即文件的增.删.改.重命名等操作.在每个待监控的目录下都会保存 ...
- 【大话QT之七】QT序列化操作
应用需求: 在网盘开发过程中有这样一个需求.即对文件版本号进行控制,即记录文件版本号的更替信息,这里说的更替信息不过记录不同一时候刻的文件变化,即文件的增.删.改.重命名等操作.在每一个待监控的文件夹 ...
- QT 序列化/串行化/对象持久化
本文以一个实例讲解Qt的序列化方法: Qt版本 4.8.0 Qt序列化简介 Qt采用QDataStream来实现序列化,QT针对不同的实例化对象有不同的要求.这里主要分两类,即:QT中原生的数据类型, ...
- qt的udp的初步使用(转)
该程序实现的功能是:局域网内,每个用户登录到聊天软件,则软件界面的右端可以显示在线用户列表,分别显示的是用户名,主机名,ip地址.软件左边那大块是聊天内容显示界面,这里局域网相当于qq中的qq群,即群 ...
- 基于QTcpSocket和QTcpServer的Tcp通讯以及QDataStream序列化数据
最近要在QT下开发Tcp通讯,发送序列化数据以便于接收. 这里涉及到几个问题: 1.QTcpSocket.QTcpServer的通讯 2.QDataStream序列化数据 多的不说,直接上干货!!! ...
- c++/qt的数据序列化和反序列化
序列化以及反序列化的实现 struct Body { double weight; double height; }; //结构体 struct People { int age; Body dBod ...
- Qt持久性对象进行序列化
Mfc和Java中自定义类的对象都可以对其进行持久性保存,Qt持久性对象进行序列化当然也是必不可少的.不过这个问题还真困扰了我很长时间……Mfc通过重写虚函数Serialize().Java则是所属的 ...
- Qt序列化格式分析(qint,QString)(非常简单好用)
最近项目需要进行QT开发环境下对传输对象进行序列化与反序列化处理,对基本类型的处理在使用QT默认的序列化方式还是完全手工序列化这两种方式之间有些犹疑不定,边想了解下QT默认序列化基本类型的格式,项目中 ...
- Qt持久性对象进行序列化(同时比较了MFC与Java的方法)
Mfc和Java中自定义类的对象都可以对其进行持久性保存,Qt持久性对象进行序列化当然也是必不可少的.不过这个问题还真困扰了我很长时间……Mfc通过重写虚函数Serialize().Java则是所属的 ...
随机推荐
- 搜狗主页页面CSS学习小记
1.边框的处理 要形成上图所示的布局效果,即,点选后,导航下面的边框不显示而其他的边框形成平滑的形状.相对于把导航的下面边框取消然后用空白覆盖掉下面搜索栏的边框比较而言,sougou有很好的方法来 ...
- gearman with postgresql as persistent Queuing
gearman is a good thing gearman client --------------> gearman server <----------------------- ...
- TOGAF架构内容框架之内容元模型(上)
TOGAF架构内容框架之内容元模型(上) 2. 内容元模型(Content Metamodel) 在TOGAF的眼中,企业架构是以一系列架构构建块为基础的,并将目录.矩阵和图形作为其具体展现方式.如果 ...
- java中的public,protected,private权限修饰
public和private基本没问题,主要是默认的和protected之间的区别 同一包中默认的和protected一样,所以来看看不同包的情况 看下如下代码,两个类位于不同包: public cl ...
- nginx反射理传apache配置 - cookie去哪儿了?
在公司接手了个微信项目,由于微信环境下访问网站需要使用对外开放的域名,所以有相关问题,都是直接运维同事帮忙处理. 原理是这样: 方案一: 1. 将域名解析指向测试服务器的地址: 2. 开放相关端口访问 ...
- HDU--1006
题目介绍 Problem Description The three hands of the clock are rotating every second and meeting each oth ...
- Swift3集成极光推送
现在很多程序都开始使用Swift开发了,但是第三方库大多数都是用OC写的,所以我们要使用Swift和OC混编.今天的内容主要讲Swift3.0集成极光推送. 1.准备工作 集成指南,极光上说的 ...
- Object-Widgets-Quick 构造树
Object Tree 当以某个QObject为父类创建一个QObject时, 它会被添加到该父类的children列表中. 析构时, QObjet 会首先检查自己的children, 依次析构, 然 ...
- 文档在线预览开源实现方案三:OpenOffice + PDFRenderer + js
之前的方案无法很好地解决异构平台及不同浏览器的兼容性问题,如方案一需要客户端浏览器支持flash而移动端浏览器无法支持这点,虽然移动端浏览器支持方案二,但是一些老版本的IE浏览器无法支持,例如IE8就 ...
- one hot encoding
转自:http://blog.sina.com.cn/s/blog_5252f6ca0102uy47.html 问题由来 在很多机器学习任务中,特征并不总是连续值,而有可能是分类值. 例如,考虑一下的 ...