• GET,POST请求第三方接口HttpClient调用工具类


    GET请求例子:
             Map<String, String> params = new HashMap<>();
            params.put("grant_type", "client_credential");
            params.put("appid","你自己的appid");
            params.put("secret", "你自己的密钥");
            String resultStr = HttpClientUtil.sendGet(url, params);
            
    
    
    
    POST  JOSN请求例子:
            JSONObject params = new JSONObject();
            params.put("第三方请求参数","自己的入参");
            params.put("第三方请求参数","自己的入参");
            params.put("第三方请求参数","自己的入参");
            params.put("第三方请求参数","自己的入参");
            params.put("第三方请求参数","自己的入参");
            log.info("请求第三方批量发送短信请求参数request:{}", params);
            String resultStr = HttpClientUtil.sendPostJson(msgTemplateUrlConfig.getUrlMessageBatch(), params);
    
    
    
    
    POST form-data请求例子:
      okhttp3.RequestBody body = new MultipartBody.Builder().setType(MultipartBody.FORM)
                        .addFormDataPart("第三方请求参数","自己的入参")
                        .addFormDataPart("第三方请求参数","自己的入参")
                        .addFormDataPart("第三方请求参数","自己的入参")
                        .addFormDataPart("第三方请求参数","自己的入参")
                        .addFormDataPart("第三方请求参数","自己的入参")
                        .addFormDataPart("第三方请求参数","自己的入参")
                        .build();
               String resultStr = HttpClientUtil.sendPostWithFile("第三方请求URL", body);
    
    
     第三方返回的数据都是以String类型的输出,需要自行转换
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    下方代码为:HttpClient请求工具类包含
    GET请求
    POST application/json请求
    POST application/x-www-form-urlencoded请求
    POST multipart/form-data 请求
    
    
    package com.bsd.trafficfly.message.util;
    
    import com.alibaba.fastjson.JSON;
    import com.alibaba.fastjson.JSONObject;
    import com.alibaba.fastjson.TypeReference;
    import okhttp3.*;
    import org.apache.commons.lang3.StringUtils;
    import org.apache.http.HttpEntity;
    import org.apache.http.NameValuePair;
    import org.apache.http.client.config.RequestConfig;
    import org.apache.http.client.entity.UrlEncodedFormEntity;
    import org.apache.http.client.methods.*;
    import org.apache.http.client.utils.URIBuilder;
    import org.apache.http.config.Registry;
    import org.apache.http.config.RegistryBuilder;
    import org.apache.http.conn.socket.ConnectionSocketFactory;
    import org.apache.http.conn.socket.PlainConnectionSocketFactory;
    import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
    import org.apache.http.entity.StringEntity;
    import org.apache.http.impl.client.CloseableHttpClient;
    import org.apache.http.impl.client.HttpClients;
    import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
    import org.apache.http.message.BasicNameValuePair;
    import org.apache.http.ssl.SSLContexts;
    import org.apache.http.util.EntityUtils;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.springframework.http.HttpHeaders;
    import org.springframework.http.MediaType;
    import org.springframework.web.multipart.MultipartFile;
    
    import javax.net.ssl.SSLContext;
    import java.io.*;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.security.KeyManagementException;
    import java.security.NoSuchAlgorithmException;
    import java.util.*;
    
    public class HttpClientUtil {
        private static Logger log = LoggerFactory.getLogger(HttpClientUtil.class);
    
        private final static String DEFAULT_ENCODE = "UTF-8";
        /**
         * 默认 10s 超时
         */
        private static final int TIME_OUT = 10 * 1000;
    
        private HttpClientUtil() {
        }
    
    
        /**
         * 忽略 ssl
         *
         * @return
         */
        private static SSLContext buildIgnoreContext() {
            SSLContext sslContext = null;
            try {
                sslContext = SSLContexts.custom().setProtocol("TLSv1.2").build();
            } catch (NoSuchAlgorithmException | KeyManagementException e) {
                log.error(e.getMessage(), e);
            }
    
            return sslContext;
        }
    
        private static CloseableHttpClient getClient(int timeOut) {
            RequestConfig requestConfig = RequestConfig.custom()
                    .setConnectionRequestTimeout(timeOut)
                    .setConnectTimeout(timeOut)
                    .setSocketTimeout(timeOut)
                    .build();
    
            SSLContext sslContext = buildIgnoreContext();
            // 注册
            Registry<ConnectionSocketFactory> registry = RegistryBuilder.<ConnectionSocketFactory>create()
                    .register("http", PlainConnectionSocketFactory.INSTANCE)
                    .register("https", new SSLConnectionSocketFactory(sslContext))
                    .build();
            PoolingHttpClientConnectionManager connManager = new PoolingHttpClientConnectionManager(registry);
            return HttpClients.custom()
                    .setConnectionManager(connManager)
                    .setDefaultRequestConfig(requestConfig)
                    .build();
        }
    
        /**
         * POST application/json请求
         *
         * @param url     请求地址
         * @param jsonStr 请求数据json字符串
         * @param headers 请求头
         * @param timeOut 超时时间
         * @return
         */
        public static String sendPostJson(String url, String jsonStr, Map<String, String> headers, int timeOut) {
            HttpPost post = new HttpPost(url);
            if (headers != null && headers.size() > 0) {
                for (Map.Entry<String, String> entry : headers.entrySet()) {
                    post.setHeader(entry.getKey(), entry.getValue());
                }
            }
            StringEntity entity = new StringEntity(jsonStr, DEFAULT_ENCODE);
            entity.setContentEncoding(DEFAULT_ENCODE);
            entity.setContentType("application/json;charset=" + DEFAULT_ENCODE);
            post.setEntity(entity);
            return execute(post, timeOut);
        }
    
        public static String sendDelete(String url, Map<String, String> headers, int timeOut) {
    
            HttpDelete httpDelete = new HttpDelete(url);
            if (headers != null && headers.size() > 0) {
                for (Map.Entry<String, String> entry : headers.entrySet()) {
                    httpDelete.setHeader(entry.getKey(), entry.getValue());
                }
            }
            return execute(httpDelete, timeOut);
        }
    
        public static String sendDelete(String url, Map<String, String> headers) {
    
            return sendDelete(url, headers, TIME_OUT);
    
        }
    
        /**
         * POST application/json请求
         *
         * @param url     请求地址
         * @param jsonStr 请求数据json字符串
         * @param headers 请求头
         * @return
         */
        public static String sendPostJson(String url, String jsonStr, Map<String, String> headers) {
            return sendPostJson(url, jsonStr, headers, TIME_OUT);
        }
    
        /**
         * POST application/json请求
         *
         * @param url     请求地址
         * @param jsonStr 请求数据json字符串
         * @param timeOut 超时时间
         * @return
         */
        public static String sendPostJson(String url, String jsonStr, int timeOut) {
            return sendPostJson(url, jsonStr, new HashMap<>(0), timeOut);
        }
    
        /**
         * POST application/json请求
         *
         * @param url     请求地址
         * @param jsonStr 请求数据json字符串
         * @return
         */
        public static String sendPostJson(String url, String jsonStr) {
            return sendPostJson(url, jsonStr, TIME_OUT);
        }
    
        /**
         * POST application/json请求
         *
         * @param url  请求地址
         * @param data 请求数据
         * @return
         */
        public static String sendPostJson(String url, Object data) {
            if (data == null) {
                data = new HashMap(0);
            }
            return sendPostJson(url, JSON.toJSONString(data));
        }
    
        /**
         * POST application/json请求
         *
         * @param url          请求地址
         * @param jsonStr      请求数据json字符串
         * @param responseType 返回值类型
         * @return
         * @author lizhenjiang
         * @date 2020/05/30
         */
        public static <T> T postJsonForObject(String url, String jsonStr, Class<T> responseType) {
            String result = sendPostJson(url, jsonStr);
            if (StringUtils.isNotBlank(result)) {
                return JSONObject.parseObject(result, responseType);
            } else {
                return null;
            }
        }
    
        /**
         * POST application/json请求
         *
         * @param url          请求地址
         * @param jsonStr      请求数据json字符串
         * @param responseType 返回值类型
         * @return
         * @author lizhenjiang
         * @date 2020/05/30
         */
        public static <T> T postJsonForObject(String url, String jsonStr, TypeReference<T> responseType) {
            String result = sendPostJson(url, jsonStr);
            if (StringUtils.isNotBlank(result)) {
                return JSON.parseObject(result, responseType);
            } else {
                return null;
            }
        }
    
        /**
         * POST application/json请求
         *
         * @param url          请求地址
         * @param data         请求数据
         * @param responseType 返回值类型
         * @return
         * @author lizhenjiang
         * @date 2020/05/30
         */
        public static <T> T postJsonForObject(String url, Object data, Class<T> responseType) {
            if (data == null) {
                data = new HashMap(0);
            }
            return postJsonForObject(url, JSON.toJSONString(data), responseType);
        }
    
        /**
         * POST application/json请求
         *
         * @param url          请求地址
         * @param data         请求数据
         * @param responseType 返回值类型
         * @return
         * @author lizhenjiang
         * @date 2020/05/30
         */
        public static <T> T postJsonForObject(String url, Object data, TypeReference<T> responseType) {
            if (data == null) {
                data = new HashMap(0);
            }
            return postJsonForObject(url, JSON.toJSONString(data), responseType);
        }
    
    
        /**
         * POST application/x-www-form-urlencoded 请求
         *
         * @param url    请求地址
         * @param params 请求数据map
         * @return
         */
        public static String sendPostForm(String url, Map<String, String> params) {
            return sendPostForm(url, params, new HashMap<>(0));
        }
    
        /**
         * POST application/x-www-form-urlencoded 请求
         *
         * @param url     请求地址
         * @param params  请求数据map
         * @param timeOut 超时时间
         * @return
         */
        public static String sendPostForm(String url, Map<String, String> params, int timeOut) {
            Map<String, String> headers = new HashMap<>(1);
            return sendPostForm(url, params, headers, timeOut);
        }
    
        /**
         * POST application/x-www-form-urlencoded 请求
         *
         * @param url     请求地址
         * @param params  请求数据map
         * @param headers 请求头
         * @return
         */
        public static String sendPostForm(String url, Map<String, String> params, Map<String, String> headers) {
            return sendPostForm(url, params, headers, TIME_OUT);
        }
    
        /**
         * POST application/x-www-form-urlencoded 请求
         *
         * @param url     请求地址
         * @param params  请求数据map
         * @param headers 请求头
         * @param timeOut 超时时间
         * @return
         */
        public static String sendPostForm(String url, Map<String, String> params, Map<String, String> headers, int timeOut) {
            UrlEncodedFormEntity reqEntity = createFormEntity(params);
            HttpPost httppost = new HttpPost(url);
            httppost.addHeader(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_FORM_URLENCODED_VALUE);
            if (headers != null) {
                for (Map.Entry<String, String> entry : headers.entrySet()) {
                    if (StringUtils.equalsAnyIgnoreCase
                            (entry.getKey(), HttpHeaders.CONTENT_LENGTH, HttpHeaders.CONTENT_TYPE)) {
                        continue;
                    }
                    httppost.addHeader(entry.getKey(), entry.getValue());
                }
            }
            httppost.setEntity(reqEntity);
            return execute(httppost, timeOut);
        }
    
        /**
         * POST application/x-www-form-urlencoded 请求
         *
         * @param url          请求地址
         * @param params       请求数据map
         * @param responseType 返回值类型
         * @return
         * @author lizhenjiang
         * @date 2020/05/30
         */
        public static <T> T postFormForObject(String url, Map<String, String> params, Class<T> responseType) {
            String result = sendPostForm(url, params);
            if (StringUtils.isNotBlank(result)) {
                return JSONObject.parseObject(result, responseType);
            } else {
                return null;
            }
        }
    
        /**
         * POST application/x-www-form-urlencoded 请求
         *
         * @param url          请求地址
         * @param params       请求数据map
         * @param responseType 返回值类型
         * @return
         * @author lizhenjiang
         * @date 2020/05/30
         */
        public static <T> T postFormForObject(String url, Map<String, String> params, TypeReference<T> responseType) {
            String result = sendPostForm(url, params);
            if (StringUtils.isNotBlank(result)) {
                return JSON.parseObject(result, responseType);
            } else {
                return null;
            }
        }
    
        /**
         * GET 请求
         *
         * @param url     请求地址
         * @param params  请求参数
         * @param timeOut 超时时间
         * @return
         */
        public static String sendGet(String url, Map<String, String> params, int timeOut) {
            return sendGet(url, params, new HashMap<>(1), timeOut);
        }
    
        /**
         * GET 请求
         *
         * @param url    请求地址
         * @param params 请求参数
         * @return
         */
        public static String sendGet(String url, Map<String, String> params) {
            return sendGet(url, params, new HashMap<>(1));
        }
    
        /**
         * GET 请求
         *
         * @param url     url
         * @param params  请求参数
         * @param headers 请求头
         * @param timeOut 超时时间
         * @return
         */
        public static String sendGet(String url, Map<String, String> params, Map<String, String> headers, int timeOut) {
            if (url == null) {
                return null;
            }
            try {
                URIBuilder uriBuilder = new URIBuilder(url);
                if (null != params) {
                    uriBuilder.setParameters(getNameValuePairList(params));
                }
                URI uri = uriBuilder.build();
                String rawQueryString = uri.getRawQuery();
                //拼接url
                if (StringUtils.isNotBlank(rawQueryString)) {
                    // 防止原本url里面就有参数
                    if (!url.contains("?")) {
                        url = url + "?";
                    }
                    if (url.endsWith("?")) {
                        url = url + rawQueryString;
                    } else {
                        url = url + "&" + rawQueryString;
                    }
                }
                HttpGet httpGet = new HttpGet(url);
                if (headers != null) {
                    Set<Map.Entry<String, String>> entrySet = headers.entrySet();
                    for (Map.Entry<String, String> entry : entrySet) {
                        httpGet.setHeader(entry.getKey(), entry.getValue());
                    }
                }
                return execute(httpGet, timeOut);
            } catch (URISyntaxException e) {
                log.error(e.getMessage(), e);
            }
            return null;
        }
    
        /**
         * GET 请求
         *
         * @param url     请求地址
         * @param params  请求参数
         * @param headers 请求头
         * @return
         */
        public static String sendGet(String url, Map<String, String> params, Map<String, String> headers) {
            return sendGet(url, params, headers, TIME_OUT);
        }
    
        /**
         * GET 请求
         *
         * @param url          请求地址
         * @param params       请求参数
         * @param responseType 返回值类型
         * @return
         * @author lizhenjiang
         * @date 2020/05/30
         */
        public static <T> T getForObject(String url, Map<String, String> params, Class<T> responseType) {
            String result = sendGet(url, params);
            if (StringUtils.isNotBlank(result)) {
                return JSONObject.parseObject(result, responseType);
            } else {
                return null;
            }
        }
    
        /**
         * GET 请求
         *
         * @param url          请求地址
         * @param params       请求参数
         * @param responseType 返回值类型
         * @return
         * @author lizhenjiang
         * @date 2020/05/30
         */
        public static <T> T getForObject(String url, Map<String, String> params, TypeReference<T> responseType) {
            String result = sendGet(url, params);
            if (StringUtils.isNotBlank(result)) {
                return JSON.parseObject(result, responseType);
            } else {
                return null;
            }
        }
    
        private static List<NameValuePair> getNameValuePairList(Map<String, String> params) {
            List<NameValuePair> list = new ArrayList<>();
            try {
                if (params != null && !params.isEmpty()) {
                    for (String key : params.keySet()) {
                        String value = params.get(key);
                        if (value != null) {
                            list.add(new BasicNameValuePair(key, value));
                        }
                    }
                }
            } catch (Exception e) {
                log.error(e.getMessage(), e);
            }
            return list;
        }
    
        private static UrlEncodedFormEntity createFormEntity(Map<String, String> pram) {
            try {
                List<NameValuePair> formParams = getNameValuePairList(pram);
                return new UrlEncodedFormEntity(formParams, DEFAULT_ENCODE);
            } catch (UnsupportedEncodingException e) {
                log.error(e.getMessage(), e);
            }
            return null;
        }
    
        private static String execute(HttpRequestBase requestBase, int timeOut) {
            StringBuilder sb = new StringBuilder();
            BufferedReader reader = null;
            CloseableHttpResponse response = null;
            CloseableHttpClient httpClient = getClient(timeOut);
            try {
    
                // 执行
                long start = System.currentTimeMillis();
                response = httpClient.execute(requestBase);
                log.debug("请求id: {} , url: {} , 耗时: {} ", requestBase.getURI().toString(), (System.currentTimeMillis() - start));
                HttpEntity entity = response.getEntity();
                reader = new BufferedReader(new InputStreamReader(entity.getContent(), DEFAULT_ENCODE));
                String line = reader.readLine();
                while (line != null) {
                    sb.append(line);
                    line = reader.readLine();
                }
                EntityUtils.consume(entity);
    
            } catch (Exception e) {
                log.error("远程调用异常", e);
            } finally {
                try {
                    if (reader != null) {
                        reader.close();
                    }
                    if (response != null) {
                        response.close();
                    }
                    httpClient.close();
                } catch (IOException e) {
                    log.error("", e);
                }
    
            }
            return sb.toString();
        }
    
    
        /**
         * POST   multipart/form-data  请求
         *
         * @param requestUrl
         * @param body
         * @return
         */
        public static String sendPostWithFile(String requestUrl, RequestBody body) {
            try {
                OkHttpClient client = new OkHttpClient().newBuilder().build();
                Request request = new Request.Builder()
                        .url(requestUrl)
                        .method("POST", body)
                        .addHeader("Content-Type", "multipart/form-data")
                        .build();
                Response response = client.newCall(request).execute();
                if (response.body() == null) {
                    log.info("短信发送httpClent获取数据为空");
                    return null;
                }
                log.info("from-data:" + response.body().toString());
                return response.body().string();
            } catch (Exception e) {
                log.info("******短信发送httpClent  请求出错****" + e.getMessage());
            } finally {
    
            }
            return null;
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366
    • 367
    • 368
    • 369
    • 370
    • 371
    • 372
    • 373
    • 374
    • 375
    • 376
    • 377
    • 378
    • 379
    • 380
    • 381
    • 382
    • 383
    • 384
    • 385
    • 386
    • 387
    • 388
    • 389
    • 390
    • 391
    • 392
    • 393
    • 394
    • 395
    • 396
    • 397
    • 398
    • 399
    • 400
    • 401
    • 402
    • 403
    • 404
    • 405
    • 406
    • 407
    • 408
    • 409
    • 410
    • 411
    • 412
    • 413
    • 414
    • 415
    • 416
    • 417
    • 418
    • 419
    • 420
    • 421
    • 422
    • 423
    • 424
    • 425
    • 426
    • 427
    • 428
    • 429
    • 430
    • 431
    • 432
    • 433
    • 434
    • 435
    • 436
    • 437
    • 438
    • 439
    • 440
    • 441
    • 442
    • 443
    • 444
    • 445
    • 446
    • 447
    • 448
    • 449
    • 450
    • 451
    • 452
    • 453
    • 454
    • 455
    • 456
    • 457
    • 458
    • 459
    • 460
    • 461
    • 462
    • 463
    • 464
    • 465
    • 466
    • 467
    • 468
    • 469
    • 470
    • 471
    • 472
    • 473
    • 474
    • 475
    • 476
    • 477
    • 478
    • 479
    • 480
    • 481
    • 482
    • 483
    • 484
    • 485
    • 486
    • 487
    • 488
    • 489
    • 490
    • 491
    • 492
    • 493
    • 494
    • 495
    • 496
    • 497
    • 498
    • 499
    • 500
    • 501
    • 502
    • 503
    • 504
    • 505
    • 506
    • 507
    • 508
    • 509
    • 510
    • 511
    • 512
    • 513
    • 514
    • 515
    • 516
    • 517
    • 518
    • 519
    • 520
    • 521
    • 522
    • 523
    • 524
    • 525
    • 526
    • 527
    • 528
    • 529
    • 530
    • 531
    • 532
    • 533
    • 534
    • 535
    • 536
    • 537
    • 538
    • 539
    • 540
    • 541
    • 542
    • 543
    • 544
    • 545
    • 546
    • 547
    • 548
    • 549
    • 550
    • 551
    • 552
    • 553
    • 554
    • 555
    • 556
    • 557
    • 558
    • 559
    • 560
    • 561
    • 562
    • 563
    • 564
    • 565
    • 566
    • 567
    • 568
    • 569
    • 570
    • 571
    • 572
    • 573
    • 574
  • 相关阅读:
    java基础巩固-宇宙第一AiYWM:为了维持生计,Spring全家桶_Part1-3(学学Spring源码呗:默认的标签和自定义标签是咋解析的)~整起
    JS-前端在dom中预览pdf等文件
    oppo手机备忘录记录怎么转移到华为手机?
    【钰娘娘】1373. 二叉搜索子树的最大键值和 DFS
    【云原生】2.1 Kubernetes基础概念
    云资产管理之CF利用框架
    已经完成Qt布局中,添加布局
    配置OSPF的DR选择事例(使用display ospf peer命令查看ospf的领居信息))
    微信小程序开发02 授权模型: 小程序的用户体系与 OAuth 规范
    模块化Common JS 和 ES Module
  • 原文地址:https://blog.csdn.net/qq_49641620/article/details/133645669