http请求方式
我爱养猫
记录平时问题,理解可能不够准确,希望各位大佬不要踩我。。。。
展开
-
关于使用RestTemplate调用,返回gizp压缩文件,处理该压缩文件方式
关于使用RestTemplate调用,返回gizp压缩文件,处理该压缩文件方式使用原生方式 ResponseEntity<byte[]> entity; //restTemplate不支持对gzip压缩。可以使用apache httpclient作为rest客户端,支持gzip压缩 需要引入依赖!! RestTemplate rt = new RestTemplate(); //使用java原生类 entity = rt.getForEntity("h翻译 2020-08-11 13:50:11 · 1620 阅读 · 0 评论 -
向目的url发送post请求
CloseableHttpClient 请求直接上代码,可以写在工具类中,直接多次调用。 public static JSONObject sendPostRequest(String url, String param) { CloseableHttpClient httpclient = HttpClientBuilder.create().build(); HttpPost post = new HttpPost(url); JSONObject re原创 2020-07-15 09:40:33 · 1028 阅读 · 0 评论