admin管理员组文章数量:1345730
I'm trying to add an attachment (PDF) to a card to Leankit. The request worked before an update from the server. After searching I saw (when using Postman) there's:
----WebKitFormBoundary
in the Content-Type
.
I thought it might be the issue, but I don't know how to add it to my headers.
The code was working before an update Leankit side.
Here is my code:
public void attachmentUpload(String filename, String path, String cardId)throws JsonProcessingException
{
String url = leankitBaseUrl+"/card/"+cardId+"/attachment";
String filePath = path+filename;
String description = "Dessin";
RestTemplate restTemplate = new RestTemplate();
MultiValueMap<String, Object> body = new LinkedMultiValueMap<>();
body.add("description", description);
body.add("file", new FileSystemResource(new File(filePath)));
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.MULTIPART_FORM_DATA);
headers.set("Authorization",leankitAPIToken);
headers.set("User-Agent", "Mozilla/5.0");
headers.setContentLength(objectMapper.writeValueAsString(body).getBytes().length);
HttpEntity<MultiValueMap<String, Object>> requestEntity = new HttpEntity<>(body, headers);
ResponseEntity<String> response = restTemplate.exchange(url, HttpMethod.POST, requestEntity, String.class);
System.out.println("Response status: " + response.getStatusCode());
System.out.println("Response body: " + response.getBody());
}
And the error:
java.io.IOException: insufficient data written at java.base/sun.www.protocol.http.HttpURLConnection$StreamingOutputStream.close(HttpURLConnection.java:3887) ~[na:na] at .springframework.http.client.SimpleClientHttpRequest.executeInternal(SimpleClientHttpRequest.java:84) ~[spring-web-6.1.14.jar:6.1.14] at .springframework.http.client.AbstractStreamingClientHttpRequest.executeInternal(AbstractStreamingClientHttpRequest.java:70) ~[spring-web-6.1.14.jar:6.1.14] at .springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:66) ~[spring-web-6.1.14.jar:6.1.14] at .springframework.web.client.RestTemplate.doExecute(RestTemplate.java:889) ~[spring-web-6.1.14.jar:6.1.14] at .springframework.web.client.RestTemplate.execute(RestTemplate.java:790) ~[spring-web-6.1.14.jar:6.1.14] at .springframework.web.client.RestTemplate.exchange(RestTemplate.java:672) ~[spring-web-6.1.14.jar:6.1.14]
My idea might not be the solution I'm open to any idea if it can solve my problem.
本文标签:
版权声明:本文标题:spring boot - How to send a post request Multipartform-data (restTemplate) in Java returns insufficient data written - Stack Ove 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743771509a2536209.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论