如何通过RestTemplate发布字节数组

时间:2011-10-28 04:07:38

标签: spring bytearray resttemplate

目标:使用RestTemplate发布图像

目前正在使用此

的变体
MultiValueMap<String, Object> parts = new
LinkedMultiValueMap<String, Object>();
parts.add("field 1", "value 1");
parts.add("file", new
ClassPathResource("myFile.jpg"));
template.postForLocation("http://example.com/myFileUpload", parts); 

还有其他选择吗? POST一个包含base64编码的byte []数组的JSON是一个有效的替代方案吗?

2 个答案:

答案 0 :(得分:11)

是的,我想这样的事情

如果图片是您的有效负载,如果您想调整标题,可以这样发布:

HttpHeaders headers = new HttpHeaders();
headers.set("Content-Type", "image/jpeg");
InputStream in = new ClassPathResource("myFile.jpg").getInputStream();

HttpEntity<byte[]> entity = new HttpEntity<>(IOUtils.toByteArray(in), headers);
template.exchange("http://example.com/myFileUpload", HttpMethod.POST, entity , String.class);

否则:

InputStream in = new ClassPathResource("myFile.jpg").getInputStream();
HttpEntity<byte[]> entity = new HttpEntity<>(IOUtils.toByteArray(in));
template.postForEntity("http://example.com/myFileUpload", entity, String.class);

答案 1 :(得分:3)

结束将Bitmap转换为字节数组,然后将其编码为Base64,然后使用Jackson作为我的序列化器通过RestTemplate发送它。