中级会员
- 积分
- 479
- 金钱
- 479
- 注册时间
- 2016-1-20
- 在线时间
- 48 小时
|
void Sender::SendImage()
{
QByteArray datagram;
int i;
int j;
static int choice=0;
QFile file1("F:\\11111.bin");
QFile file2("F:\\simiao.bin");
QFile file3("F:\\22222.bin");
QFile *file;
if(choice==0)
{
file=&file1;
}
else
{
file=&file2;
}
choice=!choice;
//file=&file3;
file->open(QIODevice::ReadOnly);
while(1)
{
datagram=file->read(100);
if(datagram.length()==0)
{
break;
}
udpSocket->writeDatagram(datagram.data(),datagram.size(),QHostAddress((192<<24)+(168<<16)+(1<<8)+123), 1234);
for(j=0;j<10000;j++)
{
}
}
file->close();
} |
|