【发布时间】:2016-06-28 08:32:14
【问题描述】:
我尝试使用多部分请求将文件上传到 OneDrive。我尝试了很多方法,但都没有奏效。
请求的格式为:-
POST /drive/items/{folder-id}/children
Content-Type: multipart/related; boundary="A100x"
--A100x
Content-ID: <metadata>
Content-Type: application/json
{
"name": "newfile.txt",
"file": {},
"@content.sourceUrl": "cid:content",
"@name.conflictBehavior": "rename"
}
--A100x
Content-ID: <content>
Content-Type: text/plain
Contents of the file to be uploaded.
--A100x--
我尝试了很多方法。我为此添加的 sn-p 在下面添加。任何帮助将不胜感激。
片段:-
HttpClient httpClient = HttpClientBuilder.create().build();
URIBuilder uriBuilder = new URIBuilder(URI);
HttpPost post = new HttpPost(uriBuilder.build());
MultipartEntityBuilder builder = MultipartEntityBuilder.create();
builder.setMode(HttpMultipartMode.BROWSER_COMPATIBLE);
Charset chars = Charset.forName("utf-8");
builder.setCharset(chars);
post.setEntity(builder.build());
builder.addPart("content", new FileBody(new File("/home/myfiles/test"), ContentType.APPLICATION_OCTET_STREAM, "test"));
builder.addPart("metadata", new StringBody(metaJson, ContentType.APPLICATION_JSON));
post.setHeader("Content-Type", "multipart/form-data");
post.addHeader("Authorization", "Bearer " + ACCESS_TOKEN);
try {
HttpResponse response = httpClient.execute(post);
if (response.getStatusLine().getStatusCode() == 200) {
br = new BufferedReader(new InputStreamReader((response.getEntity().getContent())));
responseBuilder = new StringBuilder();
while ((output = br.readLine()) != null) {
responseBuilder.append(output);
}
} else {
System.out.println("Failed : HTTP error code : " + response.getStatusLine().getStatusCode());
}
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
URI:
【问题讨论】:
标签: java http onedrive multipartentity