您的位置:首页 > 理论基础 > 计算机网络

Android 基础之网络技术-HttpURLConnection

2017-07-31 12:20 441 查看

介绍

早些时候,Android 上发送 HTTP 请求一般有 2 种方式:HttpURLConnection 和 HttpClient。不过由于 HttpClient 存在 API 数量过多、扩展困难等缺点,Android 团队越来越不建议我们使用这种方式。在 Android 6.0 系统中,HttpClient 的功能被完全移除了。因此,在这里我们只简单介绍HttpURLConnection 的使用。

代码 (核心部分,目前只演示 GET 请求):

1. Manifest.xml 中添加网络权限:<uses-permission android:name="android.permission.INTERNET">

2. 在子线程中发起网络请求:
new Thread(new Runnable() {
@Override
public void run() {
doRequest();
}
}).start();
//发起网络请求
private void doRequest() {
HttpURLConnection connection = null;
BufferedReader reader = null;
try {
//1.获取 HttpURLConnection 实例.注意要用 https 才能获取到结果!
URL url = new URL("https://www.baidu.com");
connection = (HttpURLConnection) url.openConnection();
//2.设置 HTTP 请求方式
connection.setRequestMethod("GET");
//3.设置连接超时和读取超时的毫秒数
connection.setConnectTimeout(5000);
connection.setReadTimeout(5000);
//4.获取服务器返回的输入流
InputStream inputStream = connection.getInputStream();
//5.对获取的输入流进行读取
reader = new BufferedReader(new InputStreamReader(inputStream));
final StringBuilder response = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
response.append(line);
}
//然后处理读取到的信息 response。返回的结果是 HTML 代码,字符非常多。
runOnUiThread(new Runnable() {
@Override
public void run() {
tvResponse.setText(response.toString());

}
});
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (connection != null) {
connection.disconnect();
}
}
}


效果图:



源码下载地址:http://download.csdn.net/detail/qq_19715721/9916266

本例子参照《第一行代码 Android 第 2 版》

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: