我正在使用Ektorp(CouchDB 的 Java API)将文档存储在我的 CouchDB 实例中。我无法将图像附加到文档。每次我调用createAttachment()
它都会抛出一个ClientProtocolException
.
代码示例:
AttachmentInputStream attachment =
new AttachmentInputStream(attachmentId,
fileInputStream,
contentType,
file.length());
String rev = db.createAttachment(doc.getId(), attachment));
有谁知道出了什么问题?