http请求的参数可以放到headers里面,也可以放到body里面,可以get请求也可以post请求1.post请求方式:1.1 传参:参数放到headers里面(postman工具可以测试所有的场景) public static String sendPost(String url, Map headers, String data) { String response = null; try { CloseableHttpClient httpclient = null; CloseableHttpResponse httpresponse = null; ...