3

我需要使用 POST 将 XML 文件发送到 Web 服务。我有一个客户端应用程序,它创建一个 XML 文件,该文件存储发送到 Web 应用程序所需的所有信息,但我不确定如何发送它。

我的 XML 如下所示:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Comment>
  <Poll_ID>2</Poll_ID>
  <Name>wpoon</Name>
  <Text>asdasdas</Text>
  <Timestamp>2012-10-14T10:30:25</Timestamp>
</Comment>

我将发送到的 RESTful 服务具有以下 URL:

http://localhost:8080/TESTINGrestful/rest/polls/comment

谁能告诉我如何做到这一点,任何帮助将不胜感激。

4

2 回答 2

12

Apache HttpClient这里有一个很好的例子:

DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost postRequest = new HttpPost("http://localhost:8080/TESTINGrestful/rest/polls/comment");
StringEntity input = new StringEntity("<Comment>...</Comment>");
input.setContentType("text/xml");
postRequest.setEntity(input);
HttpResponse response = httpClient.execute(postRequest);
于 2012-10-13T23:38:43.170 回答
0

类似于以前的方法,但使用HttpClientBuilder而不是已弃用的 DefaultHttpClient。此示例还使用 contentType Json

HttpPost postRequest = new HttpPost( "http://localhost:8080/service_url" );

StringEntity input = new StringEntity("{\"jsonExample\": \"12345\"}");
input.setContentType("application/json");
postRequest.setEntity(input);

HttpResponse response = HttpClientBuilder.create().build().execute(postRequest);

String json = EntityUtils.toString(response.getEntity());
于 2021-01-25T17:12:06.513 回答