如何查看多部分表单请求的内容?
2022-09-04 20:15:53
我正在使用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
如何查看我发布的内容?