我试图将数据库记录从我的服务器端应用程序传递到我的客户端应用程序。在客户端,我需要将我的数据存储到一个TStrings
集合中。
当我传递一个多行字段时,我在客户端收到两个单独的数据项,而不是一个多行数据项!我也尝试过使用基于 Unicode UTF8 的命令来做到这一点,但不幸的是结果是一样的。
服务器端代码:
procedure TForm1.IdCmdTCPServer1CommandHandlers0Command(ASender: TIdCommand);
var
myData: TStrings;
begin
myData := TStringList.Create;
myData.Add('12'); // ID
myData.Add('This is a multi line' + #13#10 + 'description.'); // Descriptions
myData.Add('Thom Smith'); // Name
try
ASender.Context.Connection.Socket.Write(myData, True{, TIdTextEncoding.UTF8});
finally
myData.Free;
end;
end;
myData
服务器端的调试时间值是:
myData[0] = '12'
myData[1] = 'This is a multi line'#$D#$A'description.'
myData[2] = 'Thom Smith'
客户端代码:
procedure TForm1.Button1Click(Sender: TObject);
var
myData: TStrings;
begin
with TIdTCPClient.Create(nil) do
begin
Port := 1717;
Host := 'localhost';
try
Connect;
//IOHandler.DefStringEncoding := TIdTextEncoding.UTF8;
myData := TStringList.Create;
try
SendCmd('greating');
Socket.ReadStrings(myData, -1{, TIdTextEncoding.UTF8});
eID.Text := myData[0]; // ID TEdit
mDes.Text := myData[1]; // Descriptions TMemo
eTelNo.Text := myData[2]; // Name TEdit
finally
myData.Free;
end;
finally
Disconnect;
Free;
end;
end;
end;
myData
客户端的调试时值:
myData[0] = '12' myData 1 = '这是多行' myData[2] = '说明。'
远程登录结果:
实际上,myData[2]
应该保留的内容'Thom Smith'
已替换为描述字段的第二行!之后没有项目myData[2]
。myData[3]
不再可访问。
我认为这个问题与 Indy 的Write
或ReadStrings
程序有关,因为它将 ItemCount 发送为 3,但它发送了两个项目(一个正确,下一个喙到两个项目!)。
如何将回车符传递到另一端,而无需将Write
过程myData[1]
分成两行?
非常感谢。