delphi中的idhttpserver如何才能收到idhttp发送来的exe\rar文件呢
delphi中的idhttpserver如何才能收到idhttp发送来的exe\rar文件呢
日期:2013-12-30 09:15:42 人气:1
用字符串流的形式发送给SERVER
sr:string;
//把你的流转字符串
stringstream:=TStringStream.Create(sr);
self.IdscrreenHTTP.Post('http://127.0.0.1:5555',stringstream);
服务器端接收的值在这里
ARequestInfo.FormParams
//流到字符串
function StreamToSt