我正在使用 Apache HTTPClient 4。我正在做非常普通的多部分工作,如下所示:
val entity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
entity.addPart("filename", new FileBody(new File(fileName), "application/zip").asInstanceOf[ContentBody])
entity.addPart("shared", new StringBody(sharedValue, "text/plain", Charset.forName("UTF-8")));
val post = new HttpPost(uploadUrl);
post.setEntity(entity);
我想在发送之前查看实体(或帖子,等等)的内容。但是,该特定方法未实现:
entity.getContent() // not defined for MultipartEntity
如何查看我发布的内容?