我使用HttpClient和mime将图像文件从Android客户端放到CouchDB。 但是有一些像这样的错误消息
D/FormReviewer(4733): {"error":"bad_request","reason":"invalid UTF-8 JSON: <<45,45,103,75,66,70,69,104,121,102,121,106,72,66,101,80,\n
这是我的代码
final String ProfileBasicID = UUID.randomUUID().toString();
Data.postImage(IconFile, "http://spark.iriscouch.com/driver/"+ProfileBasicID,new Callback<String>())
public static void postImage(File image,String url, Callback<String> success ) throws IOException {
HttpClient httpclient = new DefaultHttpClient();
HttpPut method = new HttpPut(url);
try {
MultipartEntity entity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
entity.addPart("type", new StringBody("photo"));
entity.addPart("form_file", new FileBody(image, "image/jpeg"));
method.setEntity(entity);
HttpResponse resp = httpclient.execute(method);
Log.d("httpPost", "Login form get: " + resp.getStatusLine());
StatusLine statusLine = resp.getStatusLine();
Log.d(tag, statusLine.toString());
if (entity != null) {
entity.consumeContent();
}
switch(resp.getStatusLine().getStatusCode()){
case HttpStatus.SC_CREATED:
success.call(EntityUtils.toString(resp.getEntity()));
break;
default:
throw new ClientProtocolException(statusLine.toString() +"\n"+ EntityUtils.toString(resp.getEntity()));
}
} catch (Exception ex) {
Log.d("FormReviewer", "Upload failed: " + ex.getMessage() +
" Stacktrace: " + ex.getStackTrace());
} finally {
// mDebugHandler.post(mFinishUpload);
httpclient.getConnectionManager().shutdown();
}
}
请帮我一把,谢谢
答案 0 :(得分:1)
对,忘记我之前发布的内容。 这并不像我们想象的那么简单。 我建议你阅读一些链接:
确定。 首先,如果您想要“独立”或“内嵌附件”。目前我不知道Pro和Con是什么,但是根据你的代码,我做了什么,我们将选择“Standalone”。
首先,您需要要将图像附加到的文档的rev(修订版)编号。根据上面的链接,通过在该doc上执行Head请求来执行此操作:
private String getParentRevision(String uuid, HttpClient httpClient) {
String rev = "";
try {
HttpHead head = new HttpHead("http://192.168.56.101/testforms/" + uuid + "/");
HttpResponse resp = httpClient.execute(head);
Header[] headers = resp.getAllHeaders();
getLog().debug("Dumping headers from head request");;
for (Header header : headers) {
getLog().debug(header.getName() + "=" + header.getValue());
if ("Etag".equals(header.getName())) {
StringBuilder arg = new StringBuilder(header.getValue());
if (arg.charAt(0) == '"') {
arg.delete(0, 1);
}
if (arg.charAt(arg.length()-1) == '"'){
arg.delete(arg.length()-1, arg.length());
}
rev = arg.toString();
break;
}
}
} catch (Exception ex) {
getLog().error("Failed to obtain DOC REV!", ex);
}
return rev;
}
我为硬编码等道歉,我正在这里学习和实验;) “uuid”参数是目标文档的UUID。 注意当我们获得Etag时删除包装'“'字符(是的,Etag标题是修订号)。
然后,当我们得到它时,我们实际上可以发送图像:
String serveURL = "http://192.168.56.101/testforms/" + data.getString(PARENT_UUID) + "/" + imgUuid;
if (docRev != null && !docRev.trim().isEmpty()) {
//This is dumb...
serveURL += "?rev=" + docRev + "&_rev=" + docRev;
}
HttpPut post = new HttpPut(serveURL);
ByteArrayEntity entity = new ByteArrayEntity(imageData);
entity.setContentType(data.getString(MIME_TYPE));;
post.setEntity(entity);
HttpResponse formServResp = httpClient.execute(post);
通过这个,我能够将图像附加到我的文档上;)
如上所述,请注意我也是CouchDB的新手,所以可能有更简单的方法来做到这一点!
我刚刚发现的东西(但应该早先发现)是这里存在竞争条件的可能性,例如,如果多个客户端试图同时将图像附加到同一文档。原因是rev值随着文档的每次更改而变化。 在这种情况下,您将收到服务器的回复,如
{"error":"conflict","reason":"Document update conflict."}
最简单的解决方案就是在这种情况下重试,直到它工作,或直到达到自我强加的错误限制......
干杯!