package com.care.common.util; import cn.hutool.http.HttpRequest; import cn.hutool.http.HttpResponse; import cn.hutool.json.JSONObject; import cn.hutool.json.JSONUtil; public class HttpUtil { public static JSONObject httpGet(String url) { HttpResponse response = HttpRequest.get(url).execute(); String json = response.charset("utf-8").body(); JSONObject jsonObject = JSONUtil.parseObj(json); return jsonObject; } }