i have created server and client to communication. Client sends binary data of image then server receives it and writes to file. I have pasted necessary code below.
std::stringstream binStr;
bytes_received = recv(new_sd, &binStr, sizeof(binStr) ,0);
std::cout << binStr << std::endl;
char buff[1024*1024];
std::string image;
while (!binStr.eof())
{
binStr.read(buff, sizeof (buff));
image.append(buff, binStr.gcount());
}
int id = 1;
std::stringstream ss2;
ss2 << id;
std::string str2 = ss2.str();
std::ofstream img(str2.c_str(),std::ios::binary);
std::cout << image.c_str() << std::endl;
img.write(image.c_str(), image.length());
this code creates file with name as id , but its an empty file. How can i fix it?
You cannot
recv()
into astd::stringstream
like you are attempting to. You have torecv()
into a buffer first and then you can copy that data into yourstd::stringstream
afterwards. However, you are using thestd::stringstream
only as an intermediate to get data into yourbuff
buffer, and then from there to astd::string
. You can get rid of thestd::stringstream
altogether andrecv()
directly intobuff
instead. I would even go as far as getting rid of thestd::string
altogether as well, as you do not really need it:Unless the sender closes its end of the connection after sending the image data to you, then you need a way to know when the end of the image has been reached. The sender will have to send the image data length to you so you know when to stop reading.