yangys
2024-04-18 85bb45834b1a2fd993d9f8653c48d14efc12a59e
smart-man-boot/src/main/java/com/qianwen/smartman/modules/dnc/util/HttpClientUtils.java
@@ -25,7 +25,7 @@
    public static JSONObject postForForm(String url, Map<String, String> parms) {
        HttpPost httpPost = new HttpPost(url);
        ArrayList<BasicNameValuePair> list = new ArrayList<>();
        parms.forEach(key, value -> {
        parms.forEach((key, value) -> {
            list.add(new BasicNameValuePair(key, value));
        });
        CloseableHttpClient httpClient = HttpClients.createDefault();