从网络获取 JSON 数据并转换成对应的数据结构

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/jdfkldjlkjdl/article/details/82907550

功能描述

工具类实现了从网络 url 获取到 不同数据结构的 json 数据,并转换成指定的格式。

工具代码

package com.xzy.util;

import android.util.Log;

import org.json.JSONArray;
import org.json.JSONObject;

import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * 从internet获取json数据,并转换为 list json 处理工具类
 *
 * @author xzy
 */
@SuppressWarnings("unused")
public class DealJsonUtils {

    /**
     * 获取"数组形式"的JSON数据
     * 要解析的数据结构 [{"stuNo":100,"name":"小明"},{"stuNo":101,"name":"小张"}]
     *
     * @param path 请求 url
     * @return list
     * @throws Exception 异常处理
     */
    public static List<Map<String, String>> getJSONArray(String path) throws Exception {
        String json;
        List<Map<String, String>> list = new ArrayList<>();
        Map<String, String> map;
        URL url = new URL(path);
        // HttpURLConnection对象,从网络中获取网页数据
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        // 设置超时时间为5秒
        conn.setConnectTimeout(5 * 1000);
        // HttpURLConnection是通过HTTP协议请求path路径的,所以需要设置请求方式,可以不设置,因为默认为GET
        conn.setRequestMethod("GET");
        // 判断请求是否成功,成功时请求码为200,否则失败
        if (conn.getResponseCode() == 200) {
            // 获取数据输入流
            InputStream is = conn.getInputStream();
            // 把输入流转换成字符数组
            byte[] data = readStream2Array(is);
            // 字符数组转换成字符串
            json = new String(data);
            // 数据形式:[{"stuNo":100,"name":"小明"},{"stuNo":101,"name":"小张"}]数据为数组形式,直接用 android框架
            JSONArray jsonArray = new JSONArray(json);
            for (int i = 0; i < jsonArray.length(); i++) {
                // 获取每条数据中的对象
                JSONObject item = jsonArray.getJSONObject(i);
                // 注意key值要一致*/
                String stuNo = item.getString("stuNo");
                String name = item.getString("name");

                map = new HashMap<>();
                map.put("stuNo", stuNo);
                map.put("name", name);

                list.add(map);
            }
        }
        return list;
    }

    /**
     * 获取"对象形式"的JSON数据
     * 数据形式:{"total":2,"success":true,"appList":[{"id":1,"name":"小猪"},{"id":2,"name":"小猫"}]}
     * 返回的数据形式是一个Object类型,所以可以直接转换成一个Object
     *
     * @param path 请求 url
     * @return 返回List
     */
    public static List<Map<String, String>> getJSONObject(String path) throws Exception {
        List<Map<String, String>> list = new ArrayList<>();
        Map<String, String> map;
        URL url = new URL(path);
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        // 单位是毫秒,设置超时时间为5秒
        conn.setConnectTimeout(5 * 1000);
        conn.setRequestMethod("GET");
        if (conn.getResponseCode() == 200) {
            InputStream is = conn.getInputStream();
            byte[] data = readStream2Array(is);
            String json = new String(data);
            JSONObject jsonObject = new JSONObject(json);
            // json对象中有一个数组数据,又可以使用getJSONArray获取数组
            JSONArray jsonArray = jsonObject.getJSONArray("appList");
            for (int i = 0; i < jsonArray.length(); i++) {
                JSONObject item = jsonArray.getJSONObject(i);
                String id = item.getString("id");
                String name = item.getString("name");

                map = new HashMap<>();
                map.put("id", id);
                map.put("name", name);
                list.add(map);
            }
        }
        return list;
    }

    /**
     * 获取类型复杂的JSON数据
     *
     * 数据形式: {"name":"小猪", "age":23, "content":{"questionsTotal":2, "questions": [ { "question": "what's your name?",
     * "answer": "小猪"}, {"question": "what's your age", "answer": "23"}] } }
     *
     * @param path 请求 url
     * @return list
     * @throws Exception 异常处理
     */
    public static List<Map<String, String>> getComplexJSON(String path) throws Exception {
        List<Map<String, String>> list = new ArrayList<>();
        Map<String, String> map;
        URL url = new URL(path);
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        conn.setConnectTimeout(5 * 1000);
        conn.setRequestMethod("GET");
        if (conn.getResponseCode() == 200) {
            InputStream is = conn.getInputStream();
            byte[] data = readStream2Array(is);
            String json = new String(data);

            JSONObject jsonObject = new JSONObject(json);
            String name = jsonObject.getString("name");
            int age = jsonObject.getInt("age");
            Log.i("abc", "name:" + name + " | age:" + age);
            JSONObject contentObject = jsonObject.getJSONObject("content");
            String questionsTotal = contentObject.getString("questionsTotal");
            JSONArray contentArray = contentObject.getJSONArray("questions");
            for (int i = 0; i < contentArray.length(); i++) {
                JSONObject item = contentArray.getJSONObject(i);
                String question = item.getString("question");
                String answer = item.getString("answer");

                map = new HashMap<>();
                map.put("question", question);
                map.put("answer", answer);
                map.put("total", questionsTotal);
                list.add(map);
            }
        }
        return list;
    }

    /**
     * 把输入流转换成字符数组
     */
    private static byte[] readStream2Array(InputStream inputStream) throws Exception {
        ByteArrayOutputStream bout = new ByteArrayOutputStream();
        byte[] buffer = new byte[1024];
        int len;
        while ((len = inputStream.read(buffer)) != -1) {
            bout.write(buffer, 0, len);
        }
        bout.close();
        inputStream.close();
        return bout.toByteArray();
    }
}

猜你喜欢

转载自blog.csdn.net/jdfkldjlkjdl/article/details/82907550