我需要使用java测试向这个rest函数发送post请求:
@RequestMapping(value = "/upload", method = RequestMethod.POST)
public @ResponseBody String handleFileUpload(@PathVariable Long ownerId, @RequestBody MultipartFile file,
HttpServletResponse response) throws IOException {
//Some function
}这是我的审判:
File file = new File("filePath");
FileDataBodyPart fileDataBodyPart = new FileDataBodyPart("file", file, MediaType.MULTIPART_FORM_DATA_TYPE);
WebResource webResource = createResourceClient("restPath", user);
ClientResponse response = webResource.type(MediaType.MULTIPART_FORM_DATA_TYPE).post(ClientResponse.class, fileDataBodyPart);错误上说:
“当前请求不是多部分请求”
发布于 2017-03-17 06:44:03
下面的代码将同时将文件和ContentDispostion发送到REST。
FormDataBodyPart formPart = new FormDataBodyPart(FormDataContentDisposition.name("file").fileName("YourFileName").build(),
inputStream,MediaType.APPLICATION_OCTET_STREAM_TYPE);
MultiPart multipart = new FormDataMultiPart().bodyPart(formPart);
resource = resource.path("Your Rest api path");
ClientResponse response = resource.type(MediaType.MULTIPART_FORM_DATA).post(ClientResponse.class, multipart);https://stackoverflow.com/questions/35341016
复制相似问题