我来这里是因为我遇到了recv()函数的问题。 我正在尝试编写一个TC / IP客户端,它将从服务器接收数据(我没有访问服务器代码,它是.exe)。 我能够连接和接收数据但我不能使用它们。 Normaly我应该收到一个字符串,但是以字节为单位。
int main()
{
WSADATA WSAData;
WSAStartup(MAKEWORD(2,0), &WSAData);//Initialisation du DLL,MAKEWORD(2,0) pour dire que c'est la V2,adresse de la variable qui lance le DLL
string convert;
long succes;
SOCKADDR_IN sin;//info du socket
int sock, bytes_recieved, bytes_send;
char send_data[1024], recv_data[2048];
struct hostent *host;
struct sockaddr_in server_addr;
host = gethostbyname("127.0.0.1");
if ((sock = socket(AF_INET, SOCK_STREAM, 0)) == -1) {
perror("SocketError");
exit(1);
}
server_addr.sin_family = AF_INET;
server_addr.sin_port = htons(50500);
server_addr.sin_addr = *((struct in_addr *) host->h_addr);
bzero(&(server_addr.sin_zero), 8);
if (connect(sock, (struct sockaddr *) &server_addr, sizeof(struct sockaddr))
== -1) {
perror("ConnectToError");
exit(1);
}
//bytes_send = send(sock, a, strlen(a), 0);
//bytes_send = shutdown(sock, 1);
bytes_recieved = recv(sock, recv_data, 2048, 0); recv_data[bytes_recieved] = '\0';
printf("\nRecieved data = %s ", recv_data);
cout << endl << endl;
shutdown(sock, 2);
system("PAUSE");
WSACleanup();
return 0;
}
我对我的数组有价值:数组值 但我不知道如何将它们翻译成字符串,它应遵循以下顺序:
[0:3]字符串的大小
[4:n-2]字符串,每个字母2个字节
[n-1:n]结束符号
谢谢你的帮助。
答案 0 :(得分:0)
我在网上阅读了一些内容后对我的代码进行了修改,并使其更加清晰:
void reception()
{
wchar_t input[2048];
wstring message;
unsigned int data_receive;
if(data_receive = recv(sock,(char*) input, 2048, 0) != -1)
{
message = input;
std::wofstream fs("testout.txt");
fs << message << std::flush;
//cout << input[0]<<endl;
system("PAUSE");
}
}
现在我有一个字节数组,但我不知道如何解析它。 我认为我的输入数组是UTF16。 查看数组值:Array view
答案 1 :(得分:0)
进行两次recv
来电。第一次调用4个字节。像这样:
unsigned int len;
assert(sizeof(len) == 4);
data_receive = recv(sock, &len, 4);
然后你就可以阅读真正的字符串了。
std::vector<wchar_t> input(len+1);
if(data_receive = recv(sock, input.data(), len) != -1)