0

我正在构建一个使用 MultipartEntity 和 FormBodyPart 来创建多部分请求的 HTTP 客户端。但是我不清楚如何将一些 XML 内容添加到请求正文本身。最后,请求应如下所示:

--ejjeeffe0
request-id: 99f9a899-5e25-45fb-9faa-d92320f60f7e
content-length: 1915
Function: CORE
content-type: text/xml
request-type: data
some-other header attributes: values

<?xml version="1.0" encoding="utf-8"?>
<xml payload here>

--ejjeeffe0
request-id: b7612e0a-b117-4ad7-a11f-2ea5a7e5fdc1
request-type: statistical_record
content-type: text/plain
content-length: 0
some-other attributes: values

--ejjeeffe0--

FormBodyPart 似乎没有任何方法可以添加到正文本身。有什么建议么?

4

1 回答 1

0

除非我遗漏了一些东西,否则它应该是微不足道的

entity.addPart(new FormBodyPart("my-text", new StringBody(somestring)));
entity.addPart(new FormBodyPart("my-data", new FileBody(somefile)));
于 2012-10-12T15:55:47.540 回答