restTemplate.exchange发送图片请求
时间: 2024-09-29 19:15:23 浏览: 33
精讲RestTemplate自定义请求失败异常处理.docx
`RestTemplate.exchange()` 是 Spring Boot 中常用的 REST 客户端工具,它允许你执行 HTTP 请求并获取响应结果。如果你想通过 `RestTemplate` 发送包含图片的数据作为 POST 或 PUT 请求,特别是二进制数据,你需要将图片转换成字节流或者 Base64 编码。
这里是一个简单的例子,假设你想上传一个名为 "imageFile.jpg" 的本地文件:
```java
import org.springframework.http.HttpHeaders;
import org.springframework.http.MediaType;
import org.springframework.web.client.RestTemplate;
// ... (已导入必要的依赖)
private RestTemplate restTemplate = new RestTemplate();
public String uploadImageFile(String apiUrl, File imageFile) throws IOException {
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.MULTIPART_FORM_DATA);
MultipartFile filePart = new CommonsMultipartFile("image", imageFile.getName(), MediaType.IMAGE_JPEG_VALUE, new FileInputStream(imageFile));
HttpEntity<MultipartFile> entity = new HttpEntity<>(filePart, headers);
ResponseEntity<String> response = restTemplate交换请求(apiUrl, entity, String.class);
// 检查响应状态码...
return response.getBody(); // 返回服务器返回的结果
}
阅读全文