如何在Android使用OkHttpUtils實(shí)現(xiàn)二次封裝?針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。
員工經(jīng)過長(zhǎng)期磨合與沉淀,具備了協(xié)作精神,得以通過團(tuán)隊(duì)的力量開發(fā)出優(yōu)質(zhì)的產(chǎn)品。創(chuàng)新互聯(lián)堅(jiān)持“專注、創(chuàng)新、易用”的產(chǎn)品理念,因?yàn)椤皩W⑺詫I(yè)、創(chuàng)新互聯(lián)網(wǎng)站所以易用所以簡(jiǎn)單”。公司專注于為企業(yè)提供成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)、微信公眾號(hào)開發(fā)、電商網(wǎng)站開發(fā),小程序開發(fā),軟件按需定制設(shè)計(jì)等一站式互聯(lián)網(wǎng)企業(yè)服務(wù)。
OkHttpUtils為什么進(jìn)行二次封裝?
1、減少代碼量
2、后期換網(wǎng)絡(luò)處理框架方便
二次封裝的實(shí)現(xiàn)原理
1、將網(wǎng)絡(luò)請(qǐng)求提取在一個(gè)方法中
2、對(duì)里面的可變參數(shù),可以通過參數(shù)傳遞過去,也可以提供一個(gè)set方法傳遞過去
3、對(duì)于請(qǐng)求失敗和成功,我們可以使用接口回調(diào),讓調(diào)用該方法的對(duì)象處理
封裝后的網(wǎng)絡(luò)處理類的功能
1、網(wǎng)絡(luò)請(qǐng)求
2、xml數(shù)據(jù)轉(zhuǎn)換成javaBean
每一個(gè)處理網(wǎng)絡(luò)請(qǐng)求的ListView都要處理的3數(shù)據(jù)方法
1、初始化數(shù)據(jù)
2、下拉刷新數(shù)據(jù)
3、上拉加載數(shù)據(jù)
封裝前的代碼
/** * 3,加載更多 * 注意事項(xiàng): * 請(qǐng)求成功數(shù)據(jù)更新之后,要關(guān)閉SpringView */ private void onDealLoadmore() { //資訊的網(wǎng)絡(luò)請(qǐng)求地址 String newsUrl = Constant.NEWS_URL; //http://www.oschina.net/action/api/news_list?pageIndex=0&catalog=1&pageSize=20 //關(guān)閉SpringView mSpringView.onFinishFreshAndLoad(); //網(wǎng)絡(luò)請(qǐng)求 OkHttpUtils .get() .url(newsUrl) .addParams("pageIndex", mCurrentPageIndex + "")//固定 .addParams("catalog", "1")//固定,1代表資訊 .addParams("pageSize", "20")//因?yàn)?一頁加載20條數(shù)據(jù) .build() .execute(new StringCallback() { @Override public void onError(Call call, Exception e, int id) { Toast.makeText(mContext, "上拉加載失敗", Toast.LENGTH_SHORT).show(); /* //關(guān)閉SpringView mSpringView.onFinishFreshAndLoad();*/ } @Override public void onResponse(String response, int id) { //請(qǐng)求成功,將字符串轉(zhuǎn)為javaBean,并獲取里面的泛型為News的集合 NewsList newsList = XmlUtils.toBean(NewsList.class, response.getBytes()); //對(duì)請(qǐng)求的數(shù)據(jù)進(jìn)行非空判斷 if (newsList != null) { Listlist = newsList.getList(); if (list != null && list.size() > 0) { //數(shù)據(jù)的更新 mData.addAll(newsList.getList()); //適配器的更新 mMyNewsPagerAdapter.notifyDataSetChanged(); //請(qǐng)求頁的索引要加1 ++mCurrentPageIndex; /* //關(guān)閉SpringView mSpringView.onFinishFreshAndLoad();*/ } } } }); }
封裝后的代碼
/** * 3,加載更多 * 注意事項(xiàng): * 請(qǐng)求成功數(shù)據(jù)更新之后,要關(guān)閉SpringView */ private void onDealLoadmore() { mSpringView.onFinishFreshAndLoad(); mNewsPagerProtocol.setCurrentPageIndex(mCurrentPageIndex); mNewsPagerProtocol.loadData(new NewsPagerProtocol.Callback() { @Override public void onError(Call call, Exception e, int id) { Toast.makeText(mContext, "下拉刷新失敗", Toast.LENGTH_SHORT).show(); } @Override public void onResponse(NewsList newsList, int id) { if (newsList != null) { //獲取刷新的數(shù)據(jù)集合 Listlist = newsList.getList(); //健壯性判斷 if (list != null && list.size() > 0) { //更新數(shù)據(jù)集合 mData.addAll(list); //更新適配器 mMyNewsPagerAdapter.notifyDataSetChanged(); //更新頁數(shù)的索引值 mCurrentPageIndex ++ ; } } } }); }
網(wǎng)絡(luò)封裝的代碼
/** * Author: 歸零 * Date: 2017/3/4 1:08 * Email: 4994766@qq.com * Description:網(wǎng)絡(luò)請(qǐng)求和數(shù)據(jù)解析 */ public class NewsPagerProtocol { private int mCurrentPageIndex; public void setCurrentPageIndex(int currentPageIndex) { mCurrentPageIndex = currentPageIndex; } public void loadData(final Callback callback) { //資訊的網(wǎng)絡(luò)請(qǐng)求地址 String newsUrl = Constant.NEWS_URL; //http://www.oschina.net/action/api/news_list?pageIndex=0&catalog=1&pageSize=20 //網(wǎng)絡(luò)請(qǐng)求 OkHttpUtils .get() .url(newsUrl) .addParams("pageIndex", mCurrentPageIndex + "")//固定 .addParams("catalog", "1")//固定,1代表資訊 .addParams("pageSize", "20")//因?yàn)?一頁加載20條數(shù)據(jù) .build() .execute(new StringCallback() { @Override public void onError(Call call, Exception e, int id) { //因?yàn)榉祷厥√幚淼恼?qǐng)求不一樣,所以不處理,交給調(diào)用的方法處理 callback.onError(call, e, id); } @Override public void onResponse(String response, int id) { //請(qǐng)求成功,將字符串轉(zhuǎn)為javaBean,并獲取里面的泛型為News的集合 NewsList newsList = XmlUtils.toBean(NewsList.class, response.getBytes()); //將轉(zhuǎn)換后的數(shù)據(jù)通過接口回調(diào),返回給調(diào)用方法的 callback.onResponse(newsList, id); } }); } public interface Callback { public void onError(Call call, Exception e, int id); public void onResponse(NewsList newsList, int id); } }
關(guān)于如何在Android使用OkHttpUtils實(shí)現(xiàn)二次封裝問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。