There is following code:

QFile in("c:\\test\\pic.bmp");
in.open(QFile::ReadOnly);
QByteArray imageBytes = in.readAll();
socket->write(bytesToSend);

On server, i'm receiving only header of .bmp file. What could cause such behavior? And How to solve this problem?

link|improve this question
How does the code on the receiving side look like? – Frank Osterfeld May 25 '11 at 11:33
I don't now. I know that i need to send binary file of the image, that's all. Server is working fine and there are a lot of a client apps that can send images. – Timur Ibrempashaev May 25 '11 at 11:37
feedback

1 Answer

up vote 2 down vote accepted

This method writes at most number of bytes which is your data size. But can actually write less. It actually returns number of bytes sent. So you should make a loop sending the rest of data until everything is sent. Like this.

qint64 dataSent = 0;
while(dataSent < sizeof(bytesToSend))
{
   qint64 sentNow = socket->write(bytesToSend+dataSent);
   if(sentNow >= 0)
      dataSent += sentNow;
   else
      throw new Exception();
}

This is a native socket behavior.

link|improve this answer
I tried to print returned value of socket->write(bytesToSend) in qDebug() thread, and i saw that this is actually all bytes... – Timur Ibrempashaev May 25 '11 at 11:09
Maybe problem in format of the binary file? Maybe it cannot be sent simply as QByteArray? – Timur Ibrempashaev May 25 '11 at 11:17
@Timur. Did youtry to call flush method after sending? – Oleg May 25 '11 at 11:59
Yeah, I tried, but nothing changed. I also tried print qDebug() << imageBytes; But there is only header too... – Timur Ibrempashaev May 25 '11 at 12:22
@Timur, By the way - receiving side should act in the same way. I mean a loop. And I've missed a thing about QT. It puts all the data to the buffer in any case. So you always get a size of your data or -1 as a return value. So You should use flush() and then either waitForBytesWritten() or build a similar loop around bytesWritten() signal. – Oleg May 25 '11 at 12:34
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.