varhttp: TIdHttp;sendtoserver: TStringStream;str: string;
beginhttp := TIdHttp.Create(); // 创建http.HandleRedirects := True; // 允许转头http.ReadTimeout := 3000; // 延迟时间http.Request.ContentType := 'application/json'; // 要求格式sendtoserver := TStringStream.Create(joserv.AsJSON());str := http.Post('http://192.168.1.149/epark/WinData.php', sendtoserver); // 服务器端
end;