在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
var fhttpRequest: TIdHTTP; PostData : TStringStream; tmpStr : String; begin fhttpRequest := TIdHTTP.Create(nil); fhttpRequest.HandleRedirects := True;//允许头转向 fhttpRequest.ReadTimeout := 5000;//请求超时设置 fhttpRequest.Request.ContentType := 'application/x-www-form-urlencoded';//设置内容类型为json PostData := TStringStream.Create(''); //PostData.Position := 0;//将流位置置为0 PostData.WriteString('encode=123'); PostData.WriteString('asd'); tmpStr := fhttpRequest.Post('http://10.32.8.34:8081/phis/EncodeServlet',PostData); //tmpStr是提交后返回的数据 fhttpRequest.free; PostData.Free; Result:=tmpStr; end;
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论