delphi中的idhttpserver如何才能收到idhttp发送来的exe\rar文件呢 5
展开全部
用字符串流的形式发送给SERVER
sr:string;
//把你的流转字符串
stringstream:=TStringStream.Create(sr);
self.IdscrreenHTTP.Post('http://127.0.0.1:5555',stringstream);
服务器端接收的值在这里
ARequestInfo.FormParams
//流到字符串
function StreamToString(AStream: TStream): string;
begin
if AStream.Size = 0 then
Result := ''
else
begin
setlength(Result, AStream.Size);
AStream.Position := 0;
AStream.Read(Result[1], AStream.Size);
end;
end;
如果不明白可加QQ646320175
sr:string;
//把你的流转字符串
stringstream:=TStringStream.Create(sr);
self.IdscrreenHTTP.Post('http://127.0.0.1:5555',stringstream);
服务器端接收的值在这里
ARequestInfo.FormParams
//流到字符串
function StreamToString(AStream: TStream): string;
begin
if AStream.Size = 0 then
Result := ''
else
begin
setlength(Result, AStream.Size);
AStream.Position := 0;
AStream.Read(Result[1], AStream.Size);
end;
end;
如果不明白可加QQ646320175
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询