欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

RestTemplate

程序员文章站 2022-03-02 17:16:55
...

RestTemplate

  • 获取文件流
 RestTemplate restTemplate = new RestTemplate();
HttpHeaders headers = new HttpHeaders();
headers.setAccept(Lists.newArrayList(MediaType.ALL));
ResponseEntity<byte[]> response = restTemplate.exchange(filePath, HttpMethod.GET, new HttpEntity<byte[]>(headers), byte[].class);