在之前的博客中,已經(jīng)為大家介紹了Android開發(fā)中數(shù)據(jù)存儲的幾種常見方式搀崭。當(dāng)時(shí)提到數(shù)據(jù)存儲總的來說分為兩類闷堡,一類是存儲在本地,而另一類就是存儲在服務(wù)器端刀森。本文主要介紹Android開發(fā)中網(wǎng)絡(luò)編程相關(guān)內(nèi)容踱启。
一报账、概述
二、HttpURLConnection
三埠偿、HttpClient簡介
四透罢、OkHttp
一、概述
在平常的Android開發(fā)中冠蒋,我們難免要與網(wǎng)絡(luò)請求打交道羽圃,通過網(wǎng)絡(luò)從服務(wù)器獲取數(shù)據(jù),或者將數(shù)據(jù)發(fā)送到服務(wù)器端進(jìn)行處理抖剿,打開手機(jī)上的軟件也會發(fā)現(xiàn)朽寞,現(xiàn)在完全單機(jī)的應(yīng)用已經(jīng)屈指可數(shù)。
有關(guān)網(wǎng)絡(luò)編程的一些理論部分斩郎,歡迎閱讀我的另一篇博客:Java - 網(wǎng)絡(luò)編程完全總結(jié)脑融。本文主要是對Android開發(fā)中常見的幾種網(wǎng)絡(luò)編程方式作個(gè)簡單的總結(jié),先介紹HttpURLConnection的基本使用開始缩宜,之后簡單介紹下HttpClient和現(xiàn)在非常流行的一個(gè)網(wǎng)絡(luò)請求框架OkHttp肘迎。
二甥温、HttpURLConnection
HttpURLConnection是繼承自URLConnection的一個(gè)抽象類,URLConnection通常表示的是應(yīng)用和一個(gè)指定的URL之間的連接妓布,通過它可以讀寫由URL指定的資源姻蚓,HttpURLConnection是支持HTTP特性的URLConnection。
基本使用
HttpURLConnection在使用中通常有以下幾步 :
- 實(shí)例化URL
- 調(diào)用URL的openConnection()方法新建連接
- 對連接進(jìn)行一些參數(shù)設(shè)置
- 讀取響應(yīng)匣沼,并做相應(yīng)的處理狰挡。
- 關(guān)閉連接
當(dāng)然,如果應(yīng)用要進(jìn)行網(wǎng)絡(luò)請求肛著,別忘了添加權(quán)限:
<uses-permission android:name="android.permission.INTERNET"/>
示例
下面是一個(gè)使用HttpUrlConnection請求服務(wù)器端數(shù)據(jù)的例子圆兵,比較簡單。
- MainActivity里進(jìn)行網(wǎng)絡(luò)請求
public class MainActivity extends AppCompatActivity {
private TextView tvData;
private Button btnGetData;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tvData = (TextView) findViewById(R.id.tv_data);
btnGetData = (Button) findViewById(R.id.btn_getdata);
btnGetData.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//點(diǎn)擊按鈕時(shí)開啟線程獲取數(shù)據(jù)
new Thread(new ThreadGetData()).start();
}
});
}
//Handler處理非UI線程里返回的數(shù)據(jù)
private Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
switch (msg.what) {
case 1:
//將數(shù)據(jù)顯示在界面上
StringBuilder result = (StringBuilder) msg.obj;
tvData.setText(result.toString());
break;
}
}
};
//新的線程執(zhí)行網(wǎng)絡(luò)請求
private class ThreadGetData implements Runnable {
@Override
public void run() {
HttpURLConnection conn = null;
try {
URL url = new URL("http://115.159.149.87:8080/testssm/user/usertest");
conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setConnectTimeout(5000);
if (conn.getResponseCode() == 200) {
//獲取輸入流
InputStream is = conn.getInputStream();
//輸入流轉(zhuǎn)化為StringBuilder
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(is));
StringBuilder stringBuilder = new StringBuilder();
String data;
try {
while ((data = bufferedReader.readLine()) != null) {
stringBuilder.append(data);
}
} catch (IOException e) {
e.printStackTrace();
}
//封裝數(shù)據(jù)并發(fā)送
Message message = Message.obtain();
message.what = 1;
message.obj = stringBuilder;
handler.sendMessage(message);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if (conn != null) {
conn.disconnect();//關(guān)閉連接
}
}
}
}
}
- 布局文件比較簡單
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/tv_data"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
<Button
android:id="@+id/btn_getdata"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="點(diǎn)擊獲取數(shù)據(jù)" />
</LinearLayout>
三枢贿、HttpClient簡介
HttpURLConnection是JDK的java.net包中提供的訪問HTTP協(xié)議的基本功能殉农,但是對于大部分應(yīng)用程序來說,JDK庫本身提供的功能還不夠豐富和靈活局荚。HttpClient 是 Apache Jakarta Common 下的子項(xiàng)目超凳,用來提供高效的、最新的耀态、功能豐富的支持HTTP協(xié)議的客戶端編程工具包轮傍,并且它支持 HTTP 協(xié)議最新的版本和建議。在實(shí)際使用中首装,HttpClient簡單易用创夜,但是谷歌在6.0版本以后刪除了相關(guān)的API。下面這篇文章大家可以閱讀了解其中的原因:
谷歌為何推薦使用HttpURLConnection卻棄用 Apache HttpClient.
四仙逻、OkHttp
OKHttp現(xiàn)在是Android中特別火的一個(gè)HTTP框架驰吓,它支持連接同一地址的鏈接共享同一個(gè)socket,通過連接池來減小響應(yīng)延遲系奉,還有透明的GZIP壓縮檬贰,請求緩存等優(yōu)勢。
在項(xiàng)目中使用OKHttp的話需要在Gradle里進(jìn)行配置:
compile 'com.squareup.okhttp3:okhttp:3.4.1'
簡單Get方式獲取數(shù)據(jù)
下面簡單地展示下它的用法,這里的URL是Constants.testDataUrl缺亮,是 我自己的一個(gè)測試接口翁涤,返回簡單的字符串http://115.159.149.87:8080/testssm/user/usertest 。
上面是一個(gè)OkHttp獲取服務(wù)器數(shù)據(jù)的簡單用法萌踱,我們在回調(diào)方法onResponse里判斷是否請求是否成功葵礼,如果成功就通過Handler將數(shù)據(jù)發(fā)送到UI線程里,并在UI線程里進(jìn)行更新并鸵,如果失敗就發(fā)送空消息鸳粉。
以上就是本文的主要內(nèi)容了,關(guān)于OkHttp在之后會更詳細(xì)的介紹能真,歡迎繼續(xù)關(guān)注赁严。