安卓获取经纬度

本文介绍如何在Android应用中使用Retrofit库配合Gson进行网络数据的获取与解析,通过示例展示了创建接口定义、设置BaseUrl、添加Gson转换器以及发送GET请求的全过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

implementation 'com.squareup.retrofit2:retrofit:2.4.0'

implementation 'com.squareup.retrofit2:converter-gson:2.4.0'

 

 

 

 

package com.lxm.bfdl;

 

import retrofit2.Call;

import retrofit2.http.GET;

import retrofit2.http.Path;

import retrofit2.http.Query;

 

public interface JW {

    @GET("geocoding?a=苏州市")

    Call<String> jwd();

}

 

 

 

 

 

 

JW

Mainpackage com.lxm.bfdl;

 

import android.support.v7.app.AppCompatActivity;

import android.os.Bundle;

import android.text.method.ScrollingMovementMethod;

import android.view.View;

import android.widget.Button;

import android.widget.EditText;

import android.widget.TextView;

 

import retrofit2.Call;

import retrofit2.Callback;

import retrofit2.Response;

import retrofit2.Retrofit;

import retrofit2.converter.gson.GsonConverterFactory;

 

public class Main extends AppCompatActivity {

 

    Button btn01;

    EditText et01;

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.main);

        btn01 = findViewById(R.id.buttonA);

        et01 = findViewById(R.id.et);

        Retrofit retrofit = new Retrofit.Builder()

                .baseUrl("http://gc.ditu.aliyun.com/") // 设置 网络请求 Url

                .addConverterFactory(GsonConverterFactory.create()) //设置使用Gson解析(记得加入依赖)

                .build();

 

        JW jw01 = retrofit.create(JW.class);

 

        Call<String> call = jw01.jwd();

 

        call.enqueue(new Callback<String>() {

 

            @Override

            public void onResponse(Call<String> call, Response<String> response) {

                btn01.setText("shunli");

            }

 

            @Override

            public void onFailure(Call<String> call, Throwable throwable) {

                btn01.setText("chucuole!");

            }

        });

 

    }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

带刀走江湖

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值