resttemplate 上传
时间: 2023-08-25 21:18:18 浏览: 105
您好!关于使用 RestTemplate 进行文件上传的问题,您可以参考以下代码示例:
```java
import org.springframework.core.io.FileSystemResource;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.client.RestTemplate;
import java.io.File;
public class RestTemplateFileUploadExample {
public static void main(String[] args) {
String url = "http://example.com/upload"; // 替换为实际的上传接口地址
RestTemplate restTemplate = new RestTemplate();
// 设置请求头,指定请求体格式为 multipart/form-data
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.MULTIPART_FORM_DATA);
// 构建请求体,包括文件和其他参数
MultiValueMap<String, Object> body = new LinkedMultiValueMap<>();
body.add("file", new FileSystemResource(new File("path/to/file"))); // 替换为实际的文件路径
body.add("param1", "value1"); // 替换为实际的其他参数
// 构建请求实体
HttpEntity<MultiValueMap<String, Object>> requestEntity = new HttpEntity<>(body, headers);
// 发送 POST 请求并获取响应
ResponseEntity<String> responseEntity = restTemplate.postForEntity(url, requestEntity, String.class);
// 处理响应
if (responseEntity.getStatusCode().is2xxSuccessful()) {
System.out.println("文件上传成功!");
} else {
System.out.println("文件上传失败!");
}
}
}
```
请注意替换代码中的示例 URL 和文件路径为实际的上传接口地址和文件路径。另外,您可能还需要根据实际情况调整请求头和请求体的内容。
希望这可以帮助到您!如有任何疑问,请随时提问。
阅读全文