我正试图在Google HTTP客户端库v1.14.1的帮助下在Box API中调用此特定方法http://developers.box.com/docs/#files-upload-a-file。目前我认为没办法这样做。
如果我使用http://hc.apache.org/httpclient-3.x/methods/multipartpost.html,我会添加2项StringPart和1项FilePart。
在Google HTTP客户端库中,我只看到似乎无法处理纯名称/值对的MultipartContent和Part类,如上面引用的StringPart。
以下是Apache HTTP Client示例的摘录:
HttpPost httppost = new HttpPost("http://localhost:8080" +
"/servlets-examples/servlet/RequestInfoExample");
FileBody bin = new FileBody(new File(args[0]));
StringBody comment = new StringBody("A binary file of some kind");
MultipartEntity reqEntity = new MultipartEntity();
reqEntity.addPart("bin", bin);
reqEntity.addPart("comment", comment);
httppost.setEntity(reqEntity);
我想完成类似的事情,但使用Google HTTP Client。欢迎任何建议!
答案 0 :(得分:6)
经过一番调查后,我发现我需要Box API的Content-Type:multipart / form-data并适当地构建请求。使用我正在使用的Google HTTP Client版本是不可能的,所以我自己实现了MultipartFormDataContent类,它非常适合库。这是该课程的完整列表。也许它可以包含在库中。
/*
* Copyright (c) 2013 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/**
* This is a modification of com.google.api.client.http.MultipartContent from
* Google HTTP Client library to support multipart/form-data requests.
*
* The original author is Yaniv Inbar.
*/
public class MultipartFormDataContent extends AbstractHttpContent {
private static final String NEWLINE = "\r\n";
private static final String TWO_DASHES = "--";
private ArrayList<Part> parts = new ArrayList<Part>();
public MultipartFormDataContent() {
super(new HttpMediaType("multipart/form-data").setParameter("boundary", "__END_OF_PART__"));
}
@Override
public void writeTo(OutputStream out) throws IOException {
Writer writer = new OutputStreamWriter(out, getCharset());
String boundary = getBoundary();
for (Part part : parts) {
HttpHeaders headers = new HttpHeaders().setAcceptEncoding(null);
if (part.headers != null) {
headers.fromHttpHeaders(part.headers);
}
headers.setContentEncoding(null)
.setUserAgent(null)
.setContentType(null)
.setContentLength(null);
// analyze the content
HttpContent content = part.content;
StreamingContent streamingContent = null;
String contentDisposition = String.format("form-data; name=\"%s\"", part.name);
if (part.filename != null) {
headers.setContentType(content.getType());
contentDisposition += String.format("; filename=\"%s\"", part.filename);
}
headers.set("Content-Disposition", contentDisposition);
HttpEncoding encoding = part.encoding;
if (encoding == null) {
streamingContent = content;
} else {
headers.setContentEncoding(encoding.getName());
streamingContent = new HttpEncodingStreamingContent(content, encoding);
}
// write separator
writer.write(TWO_DASHES);
writer.write(boundary);
writer.write(NEWLINE);
// write headers
HttpHeaders.serializeHeadersForMultipartRequests(headers, null, null, writer);
// write content
if (streamingContent != null) {
writer.write(NEWLINE);
writer.flush();
streamingContent.writeTo(out);
writer.write(NEWLINE);
}
}
// write end separator
writer.write(TWO_DASHES);
writer.write(boundary);
writer.write(TWO_DASHES);
writer.write(NEWLINE);
writer.flush();
}
@Override
public boolean retrySupported() {
for (Part part : parts) {
if (!part.content.retrySupported()) {
return false;
}
}
return true;
}
@Override
public MultipartFormDataContent setMediaType(HttpMediaType mediaType) {
super.setMediaType(mediaType);
return this;
}
/**
* Adds an HTTP multipart part.
*
* <p>
* Overriding is only supported for the purpose of calling the super
* implementation and changing the return type, but nothing else.
* </p>
*/
public MultipartFormDataContent addPart(Part part) {
parts.add(Preconditions.checkNotNull(part));
return this;
}
/**
* Sets the boundary string to use.
*
* <p>
* Defaults to {@code "END_OF_PART"}.
* </p>
*
* <p>
* Overriding is only supported for the purpose of calling the super
* implementation and changing the return type, but nothing else.
* </p>
*/
public MultipartFormDataContent setBoundary(String boundary) {
getMediaType().setParameter("boundary", Preconditions.checkNotNull(boundary));
return this;
}
/**
* Single part of a multi-part request.
*
* <p>
* Implementation is not thread-safe.
* </p>
*/
public static final class Part {
private String name;
private String filename;
private HttpContent content;
private HttpHeaders headers;
private HttpEncoding encoding;
public Part setContent(HttpContent content) {
this.content = content;
return this;
}
public Part setHeaders(HttpHeaders headers) {
this.headers = headers;
return this;
}
public Part setEncoding(HttpEncoding encoding) {
this.encoding = encoding;
return this;
}
public Part setName(String name) {
this.name = name;
return this;
}
public Part setFilename(String filename) {
this.filename = filename;
return this;
}
}
}
答案 1 :(得分:2)
我几个月来一直在google-http-java-client的这个小限制中挣扎,我很久以前就提出了旧的MultipartRelatedContent类的丑陋和冗余版本。 现在我将Google库更新到最新的1.15.0-rc,我发现很容易将MultipartContent子类化并制作适合任何类型的&#34; multipart的东西/ form-data&#34; 内容。
一个简短的用法示例:
File file = new File("/path/image.jpg");
FileContent fileContent = new FileContent("application/octet-stream", file);
MultipartFormDataContent multipart = new MultipartFormDataContent();
multipart.addPart(new Part(fileContent), "image", file.getName());
request.setContent(multipart); // sets the content to the request
&#34;图像&#34;将是&#34; content-disposition&#34; 标题中&#34; name&#34; 键的值,以及文件名(图像。这种情况下的jpg)将是&#34;文件名&#34;的(可选)值。键。
以同样的方式,您可以添加任意多个不同的部分(也可以将其他&#34; multipart / mixed&#34;内容,只需确保使用不同的边界字符串)添加到第一级多部分内容。