I need to write a c++ program to read a csv data from a socket and generate a CSV file. Could someone help me with this programming...
C++ programming
Collapse
X
-
Tags: None
-
Originally posted by premkumarsp1I need to write a c++ program to read a csv data from a socket and generate a CSV file. Could someone help me with this programming...
1)Initiate a client connection with the server
2)From server side start sending the contents of the CSV file chunk by chunk
3)Open a file
4)In the client side read the socket's data using the read command and put the contents in the file - in a loop
5)Close the file
Try working on this idea
Raghuram -
Of course, I assume you know the format of the CSV file. Otherwise, you won't ba able to read it.Comment
-
Originally posted by gpraghuramThe idea would be quite simple.
1)Initiate a client connection with the server
2)From server side start sending the contents of the CSV file chunk by chunk
3)Open a file
4)In the client side read the socket's data using the read command and put the contents in the file - in a loop
5)Close the file
Try working on this idea
Raghuram
i am working on it..Comment
Comment