编程语言
首页 > 编程语言> > java – 用于字节的Spring REST模板

java – 用于字节的Spring REST模板

作者:互联网

我使用spring框架rest模板获取字节数组,
但我还需要获取此字节的Mediatype.

此bytearray的mediaType可以是任何类型.

现在用于获取字节的代码如下.

   HttpHeaders headers = new HttpHeaders();
   headers.setAccept(Collections.singletonList(MediaType.valueOf("application/pdf")));
   ResponseEntity<byte[]> result = restTemp.exchange(url, HttpMethod.GET, entity, byte[].class,documentId);

以上代码仅获取pdf内容类型.

如何将contentType设置为接受任何通用MediaType,因为另一端的服务为byteArray提供任何随机MediaType.

有人可以建议如何获取MediaType.

欢迎任何建议..

解决方法:

只是不发送accept标头不强制服务器返回该内容类型.这与发送通配符* / *相同

//HttpHeaders headers = new HttpHeaders();
//headers.setAccept(Collections.singletonList(MediaType.WILDCARD));
ResponseEntity<byte[]> result = restTemp.exchange(url, HttpMethod.GET, entity, byte[].class,documentId);

在此之后,从响应的标题中提取内容类型

 byte body[] = result.getBody();
 MediaType contentType = result.getHeaders().getContentType();

标签:spring-rest,java,spring,cxf
来源: https://codeday.me/bug/20190828/1755352.html