安卓如何向指定URL发送get和post请求(傻瓜教程)
在以往的html前端开发时我们经常使用get和post请求向服务器请求数据,所以在安卓开发时如果我们能够像自己或第三方服务器请求数据那么就能够简化我们的开发,并实现更多的功能
接下来我们就用实际的例子讲解如何向指定的URL发送get请求
首先我们创建一个安卓项目并在主界面里创建一个按钮用来触发get请求,布局代码如下
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.john.getrequesttest.MainActivity">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="发送get请求"
android:id="@+id/sendGetRequest"/>
</RelativeLayout>
接下来在MainActivity里为button按钮添加监听事件,代码如下