Ektorp(Java API for CouchDB)を使用して、CouchDBインスタンスにドキュメントを保存しています。ドキュメントに画像を添付するのに問題があります。私が呼び出すたびにcreateAttachment()
それはスローしClientProtocolException
ます。
コードサンプル:
AttachmentInputStream attachment =
new AttachmentInputStream(attachmentId,
fileInputStream,
contentType,
file.length());
String rev = db.createAttachment(doc.getId(), attachment));
誰かが何が悪いのか知っていますか?