Android Studio App开发之网络通信中使用GET方式调用HTTP接口的讲解及实战(附源码 超详细必看)

简介: Android Studio App开发之网络通信中使用GET方式调用HTTP接口的讲解及实战(附源码 超详细必看)

运行有问题或需要源码请点赞关注收藏后评论区留言~~~

一、GET方式调用HTTP接口

Android开发采用Java作为编程语言,也就沿用了Java的HTTP连接工具HttpURLConnection,不管是访问HTTP接口还是上传或下载文件都是用它来实现。它有几个关键点

1:HttpURLConnection默认采取国际通行的UTF-8编码,中文用GBK编码

2:多数时候服务器返回的报文采用明文传输,但有时为了提高传输效率,服务器会先压缩应答报文,再把压缩后的数据送给调用方,这样耗费空间小,降低流量占用

3:小心返回报文超长的情况

访问HTTP接口要求APP事先申请网络权限,也就是在AndroidManifest.xml内部添加以下的网络权限配置

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

同样开启手机的定位权限功能 代码如下

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

定位工具Location包含了丰富的位置信息 部分方法如下

1:getProvider 获取定位类型 主要由网络定位和GPS定位

2:getTime 获取定位时间

3:getLongitude 获取经度

4:getLatitude 获取纬度

5:getAltitude 获取高度

6:getAccuracy 获取定位精度

如果想把经纬度换算为详细地址的文字描述,就要调用地图服务商的地址查询接口,本次案例选用天地图的查询服务  效果如下

模拟机上定位不了 建议连接真机测试

代码如下

Java类

package com.example.chapter14;
import android.Manifest;
import android.annotation.SuppressLint;
import android.content.Context;
import android.content.pm.PackageManager;
import android.location.Location;
import android.location.LocationManager;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;
import android.widget.Toast;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.ActivityCompat;
import com.example.chapter14.task.GetAddressTask;
import com.example.chapter14.task.GetAddressTask.OnAddressListener;
import com.example.chapter14.util.DateUtil;
import com.example.chapter14.util.SwitchUtil;
@SuppressLint("DefaultLocale")
public class HttpGetActivity extends AppCompatActivity implements OnAddressListener {
    private final static String TAG = "HttpGetActivity";
    private TextView tv_location;
    private Location mLocation; // 定位信息
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_http_request);
        tv_location = findViewById(R.id.tv_location);
        // 检查定位功能是否打开,若未打开则跳到系统的定位功能设置页面
        SwitchUtil.checkGpsIsOpen(this, "需要打开定位功能才能查看定位结果信息");
    }
    @Override
    protected void onResume() {
        super.onResume();
        // 检查当前设备是否已经开启了定位功能
        if (ActivityCompat.checkSelfPermission(this,
                Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
            Toast.makeText(this, "请授予定位权限并开启定位功能", Toast.LENGTH_SHORT).show();
            return;
        }
        // 从系统服务中获取定位管理器
        LocationManager mgr = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
        // 获取最后一次成功定位的位置信息(network表示网络定位方式)
        Location location = mgr.getLastKnownLocation("network");
        getLocationText(location); // 获取定位结果文本
        // 获取最后一次成功定位的位置信息(gps表示卫星定位方式)
        location = mgr.getLastKnownLocation("gps");
        getLocationText(location); // 获取定位结果文本
    }
    // 获取定位结果文本
    private void getLocationText(Location location) {
        if (location != null) {
            mLocation = location;
            refreshLocationInfo(""); // 刷新定位信息
            GetAddressTask task = new GetAddressTask(); // 创建一个详细地址查询的异步任务
            task.setOnAddressListener(this); // 设置详细地址查询的监听器
            task.execute(location); // 把详细地址查询任务加入到处理队列
        }
    }
    // 在找到详细地址后触发
    @Override
    public void onFindAddress(String address) {
        refreshLocationInfo(address); // 刷新定位信息
    }
    // 刷新定位信息
    private void refreshLocationInfo(String address) {
        String desc = String.format("定位类型=%s\n定位对象信息如下: " +
                        "\n\t其中时间:%s" + "\n\t其中经度:%f,纬度:%f" +
                        "\n\t其中高度:%d米,精度:%d米" + "\n\t其中地址:%s",
                mLocation.getProvider(), DateUtil.formatDate(mLocation.getTime()),
                mLocation.getLongitude(), mLocation.getLatitude(),
                Math.round(mLocation.getAltitude()), Math.round(mLocation.getAccuracy()), address);
        tv_location.setText(desc);
    }
}

任务类

package com.example.chapter14.task;
import android.location.Location;
import android.os.AsyncTask;
import android.text.TextUtils;
import android.util.Log;
import com.example.chapter14.constant.UrlConstant;
import com.example.chapter14.util.HttpUtil;
import org.json.JSONException;
import org.json.JSONObject;
// 根据经纬度获取详细地址的异步任务
public class GetAddressTask extends AsyncTask<Location, Void, String> {
    private final static String TAG = "GetAddressTask";
//    public GetAddressTask() {
//        super();
//    }
    // 线程正在后台处理
    protected String doInBackground(Location... params) {
        Location location = params[0];
        // 把经度和纬度代入到URL地址。天地图的地址查询url在UrlConstant.java中定义
        String url = String.format(UrlConstant.GET_ADDRESS_URL,
                location.getLongitude(), location.getLatitude());
        Log.d(TAG, "url = " + url);
        String resp = HttpUtil.get(url, null); // 发送HTTP请求信息,并获得HTTP应答内容
        Log.d(TAG, "resp = " + resp);
        String address = "未知";
        // 下面从JSON串中解析formatted_address字段获得详细地址描述
        if (!TextUtils.isEmpty(resp)) {
            try {
                JSONObject obj = new JSONObject(resp);
                JSONObject result = obj.getJSONObject("result");
                address = result.getString("formatted_address");
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
        Log.d(TAG, "address = " + address);
        return address; // 返回HTTP应答内容中的详细地址
    }
    // 线程已经完成处理
    protected void onPostExecute(String address) {
        mListener.onFindAddress(address); // HTTP调用完毕,触发监听器的找到地址事件
    }
    private OnAddressListener mListener; // 声明一个查询详细地址的监听器对象
    // 设置查询详细地址的监听器
    public void setOnAddressListener(OnAddressListener listener) {
        mListener = listener;
    }
    // 定义一个查询详细地址的监听器接口
    public interface OnAddressListener {
        void onFindAddress(String address);
    }
}

日期类

package com.example.chapter14.util;
import android.annotation.SuppressLint;
import android.text.TextUtils;
import java.text.SimpleDateFormat;
import java.util.Date;
@SuppressLint("SimpleDateFormat")
public class DateUtil {
    // 获取当前的日期时间
    public static String getNowDateTime() {
        SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
        return sdf.format(new Date());
    }
    // 获取当前的时间
    public static String getNowTime() {
        SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
        return sdf.format(new Date());
    }
    // 获取当前的时间(精确到毫秒)
    public static String getNowTimeDetail() {
        SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss.SSS");
        return sdf.format(new Date());
    }
    // 获取指定格式的日期时间
    public static String getNowDateTime(String formatStr) {
        String format = formatStr;
        if (TextUtils.isEmpty(format)) {
            format = "yyyyMMddHHmmss";
        }
        SimpleDateFormat sdf = new SimpleDateFormat(format);
        return sdf.format(new Date());
    }
    public static String formatDate(long time) {
        Date date = new Date(time);
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        return sdf.format(date);
    }
    // 重新格式化日期字符串
    public static String convertDateString(String strTime) {
        String newTime = strTime;
        try {
            SimpleDateFormat oldFormat = new SimpleDateFormat("yyyyMMddHHmmss");
            Date date = oldFormat.parse(strTime);
            SimpleDateFormat newFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
            newTime = newFormat.format(date);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return newTime;
    }
}

XML文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="5dp" >
    <TextView
        android:id="@+id/tv_location"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="暂未获取到定位对象"
        android:textColor="@color/black"
        android:textSize="17sp" />
</LinearLayout>

创作不易 觉得有帮助请点赞 关注收藏~~~

相关文章
|
2月前
|
SQL 人工智能 Dart
Android Studio的插件生态非常丰富
Android Studio的插件生态非常丰富
128 1
|
2月前
|
Ubuntu Linux Android开发
Android Studio支持多种操作系统
Android Studio支持多种操作系统
120 1
|
2月前
|
数据可视化 开发工具 Android开发
Android Studio
Android Studio
169 1
|
1月前
|
SQL 安全 网络安全
网络安全与信息安全:知识分享####
【10月更文挑战第21天】 随着数字化时代的快速发展,网络安全和信息安全已成为个人和企业不可忽视的关键问题。本文将探讨网络安全漏洞、加密技术以及安全意识的重要性,并提供一些实用的建议,帮助读者提高自身的网络安全防护能力。 ####
71 17
|
1月前
|
存储 SQL 安全
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
随着互联网的普及,网络安全问题日益突出。本文将介绍网络安全的重要性,分析常见的网络安全漏洞及其危害,探讨加密技术在保障网络安全中的作用,并强调提高安全意识的必要性。通过本文的学习,读者将了解网络安全的基本概念和应对策略,提升个人和组织的网络安全防护能力。
|
1月前
|
SQL 安全 网络安全
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
随着互联网的普及,网络安全问题日益突出。本文将从网络安全漏洞、加密技术和安全意识三个方面进行探讨,旨在提高读者对网络安全的认识和防范能力。通过分析常见的网络安全漏洞,介绍加密技术的基本原理和应用,以及强调安全意识的重要性,帮助读者更好地保护自己的网络信息安全。
59 10
|
1月前
|
SQL 安全 网络安全
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
在数字化时代,网络安全和信息安全已成为我们生活中不可或缺的一部分。本文将介绍网络安全漏洞、加密技术和安全意识等方面的内容,并提供一些实用的代码示例。通过阅读本文,您将了解到如何保护自己的网络安全,以及如何提高自己的信息安全意识。
66 10
|
1月前
|
存储 监控 安全
云计算与网络安全:云服务、网络安全、信息安全等技术领域的融合与挑战
本文将探讨云计算与网络安全之间的关系,以及它们在云服务、网络安全和信息安全等技术领域中的融合与挑战。我们将分析云计算的优势和风险,以及如何通过网络安全措施来保护数据和应用程序。我们还将讨论如何确保云服务的可用性和可靠性,以及如何处理网络攻击和数据泄露等问题。最后,我们将提供一些关于如何在云计算环境中实现网络安全的建议和最佳实践。
|
1月前
|
监控 安全 网络安全
网络安全与信息安全:漏洞、加密与意识的交织
在数字时代的浪潮中,网络安全与信息安全成为维护数据完整性、保密性和可用性的关键。本文深入探讨了网络安全中的漏洞概念、加密技术的应用以及提升安全意识的重要性。通过实际案例分析,揭示了网络攻击的常见模式和防御策略,强调了教育和技术并重的安全理念。旨在为读者提供一套全面的网络安全知识框架,从而在日益复杂的网络环境中保护个人和组织的资产安全。
|
1月前
|
安全 网络安全 数据安全/隐私保护
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
在数字化时代,网络安全和信息安全已成为我们日常生活中不可或缺的一部分。本文将深入探讨网络安全漏洞、加密技术和安全意识等方面的问题,并提供一些实用的建议和解决方案。我们将通过分析网络攻击的常见形式,揭示网络安全的脆弱性,并介绍如何利用加密技术来保护数据。此外,我们还将强调提高个人和企业的安全意识的重要性,以应对日益复杂的网络威胁。无论你是普通用户还是IT专业人士,这篇文章都将为你提供有价值的见解和指导。

热门文章

最新文章