我正在 cpp 中编写一个控制台应用程序,它通过 TCP 从文件向主机发送控制命令并接收响应。所有这些信息都显示在屏幕上并记录到文件中,这是实际问题。输出字符串似乎出于任何原因存储垃圾,即使我尝试设置固定长度。
编辑:清理代码并处理 recv() 的返回值。我唯一还没有得到的是我的日志文件中的第二个recv 行充满了垃圾。也许你们中的一个人能够发现问题。
string cmd="";
char *sendstr=(char*)cmd.c_str();
fflush(stdin);
int n = 1, total = 0;
char temp[1024];
string inStr;
if(cmdin.is_open())
{
while(!cmdin.eof())
{
total=0;
cmd=fread();
send(serverPC, sendstr, (int)strlen(sendstr),0);
n=recv(serverPC,&temp[total],sizeof(temp)-total-1,0); // FIX THIS
total+=n;
temp[total]='\0';
inStr=temp;
fwrite(inStr,cmd);
}
cout << "Data successfully sent!\n";
}
else{
cerr<<"can't find 'cmd.cfg' file"<<endl;
}
我期望的输出:
<11:40:00> INIT
received: VELO=0.00km/h DOT=FORW
----
这就是我得到的:
<10:05:56> INIT
received: VELO=0.00km/h DOT=FORW
----
<10:05:56> VELO=50.00
received: VELO=0.00km/h DOT=FORW VELO=0.00km/h DOT=FORW VELO=0.00km/h
DOT=FORW VELO=0.00km/h DOT=FORW VELO=0.00km/h DOT=FORW VELO=0.00km/h DOT=FORW
VELO=0.00km/h DOT=FORW
----
<10:05:56> VELO=100.00
received: VELO=50.00km/h DOT=FORW
----
<10:05:56> DOT=BACK
received: VELO=50.00km/h DOT=FORW