Firemonkey Delphi TWeb浏览器获取文本/ HTML

3pvhb19x  于 2023-03-12  发布在  其他
关注(0)|答案(2)|浏览(175)

我如何从Firemonkey平台(Android/iOS)上的网页获取文本/ html。TWebBrowser没有任何功能...

vjhs03f7

vjhs03f71#

通过一些测试,我合并了JAVAScript和 Delphi 代码,有一个工作区,请参考我的文章:http://firemonkeylessons.blogspot.tw/2015/01/get-htmljson-from-twebbrowser.html

xhv8bpkk

xhv8bpkk2#

这是我用来获取html文本的方法

function GetURL(const AURL: string): string;
          var
            HttpClient: THttpClient;
            HttpResponse: IHttpResponse;
            begin
              HttpClient := THTTPClient.Create;
              try
                HttpResponse := HttpClient.Get(AURL);
                // memo1.Text:=HttpResponse.ContentAsString();
                Result := HttpResponse.ContentAsString();
                finally
                HttpClient.Free;
              end;
            end;

相关问题