Android Retrofit框架的簡單應(yīng)用

原文:https://blog.csdn.net/uyy203/article/details/52455702

Retrofit:Square提供的開源產(chǎn)品,為Android平臺的應(yīng)用提供一個(gè)類型安全的REST客戶端

  1. https://github.com/square/retrofit

RxAndroid:響應(yīng)式編程框架RxJava針對Android平臺的擴(kuò)展例证。

  1. https://github.com/ReactiveX/RxAndroid
  2. https://github.com/ReactiveX/RxJava

Dagger2:依賴注入(或叫ioc,用過Spring的都知道這東東)框架路呜,用于解耦的。

  1. https://github.com/google/dagger/

通過

  1. http://ip.taobao.com/service/getIpInfo.php?ip=218.19.99.83

獲得json數(shù)據(jù)

在app的gradle中加入依賴包

compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4'//Retrofit2所需要的包
compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'//ConverterFactory的Gson依賴包
compile 'com.squareup.retrofit2:converter-scalars:2.0.0-beta4'//ConverterFactory的String依賴包

在AndroidManifest.xml加入網(wǎng)絡(luò)訪問權(quán)限

<uses-permission android:name="android.permission.INTERNET"/>

編寫API服務(wù)

package com.example.xyz.retrofit.Response;

import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Query;

/**
 * Created by xyz on 2016/9/5.
 */
public interface ApiService {

    @GET("service/getIpInfo.php")//請求目錄
    Call<GetIpInfoResponse>//回調(diào)织咧、傳入
    getIpInfo(@Query("ip") String ip);//url傳值key和value

}

定義接受數(shù)據(jù)的類GetIpInfoResponse

package com.example.xyz.retrofit.Response;
import com.example.xyz.retrofit.model.IpInfo;

/**
 * Created by xyz on 2016/9/5.
 */
public class GetIpInfoResponse {
    public int code;
    public IpInfo data;
}

IpInfo

package com.example.xyz.retrofit.model;

/**
 * Created by xyz on 2016/9/6.
 */
public class IpInfo {
    public String country;
    public String Country_id;
    public String area;
    public String area_id;
    public String ip;
    public String city;
    public String isp;

}

activity_main.xml

<?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.xyz.retrofit.MainActivity">


    <Button
        android:id="@+id/b1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tx1"
        android:layout_below="@id/b1"
        android:text="" />

</RelativeLayout>

MainActivity.java

package com.example.xyz.retrofit;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

import com.example.xyz.retrofit.Response.ApiService;
import com.example.xyz.retrofit.Response.GetIpInfoResponse;

import retrofit2.Call;
import retrofit2.Callback;
import retrofit2.Response;
import retrofit2.Retrofit;
import retrofit2.converter.gson.GsonConverterFactory;

public class MainActivity extends AppCompatActivity {
    private Button b1;
    private TextView tx1;
    private String enpoint="http://ip.taobao.com";
    private String ip="218.19.99.83";


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        b1=(Button) findViewById(R.id.b1);
        tx1=(TextView) findViewById(R.id.tx1);

        b1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Retrofit retrofit=new Retrofit.Builder()//實(shí)例化retrofit
                        .baseUrl(enpoint)
                        .addConverterFactory(GsonConverterFactory.create())//讀取GSON
                        .build();

                ApiService apiService=retrofit.create(ApiService.class);//指定retrofit的api服務(wù)

                Call<GetIpInfoResponse> call=apiService.getIpInfo(ip);
                call.enqueue(new Callback<GetIpInfoResponse>() {
                    @Override
                    public void onResponse(Call<GetIpInfoResponse> call, Response<GetIpInfoResponse> response) {
                        GetIpInfoResponse getIpInfoResponse=response.body();//將GSON數(shù)據(jù)寫入GetIpInfoResponse
                        tx1.setText(getIpInfoResponse.data.country);
                        tx1.append("胀葱,");
                        tx1.append(getIpInfoResponse.data.area);
                        tx1.append(",");
                        tx1.append(getIpInfoResponse.data.city);
                        tx1.append("笙蒙,");
                        tx1.append(getIpInfoResponse.data.isp);
                        tx1.append("抵屿,code="+getIpInfoResponse.code);

                    }

                    @Override
                    public void onFailure(Call<GetIpInfoResponse> call, Throwable t) {
                        Toast.makeText(getApplicationContext(),t.getMessage(),Toast.LENGTH_SHORT).show();
                    }
                });
            }
        });

        
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市捅位,隨后出現(xiàn)的幾起案子轧葛,更是在濱河造成了極大的恐慌,老刑警劉巖绿渣,帶你破解...
    沈念sama閱讀 211,639評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件朝群,死亡現(xiàn)場離奇詭異,居然都是意外死亡中符,警方通過查閱死者的電腦和手機(jī)姜胖,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,277評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來淀散,“玉大人右莱,你說我怎么就攤上這事蚜锨。” “怎么了慢蜓?”我有些...
    開封第一講書人閱讀 157,221評論 0 348
  • 文/不壞的土叔 我叫張陵亚再,是天一觀的道長。 經(jīng)常有香客問我晨抡,道長氛悬,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,474評論 1 283
  • 正文 為了忘掉前任耘柱,我火速辦了婚禮如捅,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘调煎。我一直安慰自己镜遣,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,570評論 6 386
  • 文/花漫 我一把揭開白布士袄。 她就那樣靜靜地躺著悲关,像睡著了一般。 火紅的嫁衣襯著肌膚如雪娄柳。 梳的紋絲不亂的頭發(fā)上寓辱,一...
    開封第一講書人閱讀 49,816評論 1 290
  • 那天,我揣著相機(jī)與錄音西土,去河邊找鬼讶舰。 笑死,一個(gè)胖子當(dāng)著我的面吹牛需了,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播般甲,決...
    沈念sama閱讀 38,957評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼肋乍,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了敷存?” 一聲冷哼從身側(cè)響起墓造,我...
    開封第一講書人閱讀 37,718評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎锚烦,沒想到半個(gè)月后觅闽,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,176評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡涮俄,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,511評論 2 327
  • 正文 我和宋清朗相戀三年蛉拙,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片彻亲。...
    茶點(diǎn)故事閱讀 38,646評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡孕锄,死狀恐怖吮廉,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情畸肆,我是刑警寧澤宦芦,帶...
    沈念sama閱讀 34,322評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站轴脐,受9級特大地震影響调卑,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜大咱,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,934評論 3 313
  • 文/蒙蒙 一恬涧、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧徽级,春花似錦气破、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,755評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至旷痕,卻和暖如春碳锈,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背欺抗。 一陣腳步聲響...
    開封第一講書人閱讀 31,987評論 1 266
  • 我被黑心中介騙來泰國打工售碳, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人绞呈。 一個(gè)月前我還...
    沈念sama閱讀 46,358評論 2 360
  • 正文 我出身青樓贸人,卻偏偏與公主長得像,于是被迫代替她去往敵國和親佃声。 傳聞我的和親對象是個(gè)殘疾皇子艺智,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,514評論 2 348

推薦閱讀更多精彩內(nèi)容

  • 請?jiān)试S我借鑒前輩們的東西~~~~ 感激不盡~~~~~ 以下為Android 框架排行榜 么么噠~ Android...
    嗯_新閱讀 2,019評論 3 32
  • 一.榜單介紹 排行榜包括四大類: 單一框架:僅提供路由、網(wǎng)絡(luò)層圾亏、UI層十拣、通信層或其他單一功能的框架 混合開發(fā)框架:...
    不務(wù)正業(yè)的程序猿閱讀 1,115評論 0 6
  • 攔山長嘯問山林, 蒼柏何故出綠陰志鹃。 若非與君瑤臺見夭问。 會向九天只爭晴。
    136樓蘭閱讀 311評論 0 4
  • 在家鄉(xiāng)數(shù)不勝數(shù)的景點(diǎn)中曹铃,我最喜愛美不勝收缰趋,風(fēng)景秀麗的白羊峪。 一次暑假,媽媽埠胖,姑姑和姑父帶我和我弟弟糠溜,...
    zhangsenyu閱讀 478評論 0 0
  • 最近晚上睡前跟孩子經(jīng)常玩影子游戲。周六早上表演課下課后直撤,老師帶著進(jìn)劇場看了一下正好是手影戲非竿,娃看得目不轉(zhuǎn)睛。結(jié)束后...
    大大媽閱讀 286評論 0 1