Android GET and POST Request

前端 未结 6 1804
执念已碎
执念已碎 2021-02-01 11:14

Can anyone point me to a good implementation of a way to send GET and POST Requests. They are alot of ways to do these, and i am looking for the best implementation. Secondly is

6条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-01 11:52

    As you said: the GET-Parameters are in the URL - So you can use a loadUrl() on your Webview to send them.

    [..].loadUrl("http://www.example.com/data.php?param1=value1¶m2=value2&...");
    

提交回复
热议问题