0

问题

我正在考虑将我现有的 http post 方法转换为spring-android但我失败了。

JSONObject defaultJsonObject = new JSONObject();
defaultJsonObject.put("ln", "Kiat");
defaultJsonObject.put("CountryName", "Malaysia");
defaultJsonObject.put("CityName", "Kuala Lumpur");

这是我现有的 http 帖子,它正在运行,并将形成一个帖子正文:[json={"ln":"Kiat","CountryName":"Malaysia","CityName":"Kuala Lumpur"}]

List<NameValuePair> postParams = new ArrayList<NameValuePair>();
 postParams.add(new BasicNameValuePair("json", jsonObject.toString()));
 UrlEncodedFormEntity entity = new UrlEncodedFormEntity(postParams);
 System.out.println("post param: " + postParams.toString());
 post.setEntity(entity);
 post.setHeader("Accept", "application/json");

但是当我使用 RestTemplate 转换为 Spring-android 时它失败了。即使我已经设法形成帖子正文,因为[json={"ln":"Kiat","CountryName":"Malaysia","CityName":"Kuala Lumpur"}] 我不断收到 500 Internal Server Error

HttpHeaders requestHeaders = new HttpHeaders();
requestHeaders.setAccept(Arrays.asList(MediaType.APPLICATION_JSON));
List<NameValuePair> postParams1 = new ArrayList<NameValuePair>();
postParams1.add(new BasicNameValuePair("json", jsonObject.toString()));
HttpEntity<?> requestEntity = new HttpEntity<Object>(postParams1, requestHeaders);
RestTemplate restTemplate = new RestTemplate();
restTemplate.setRequestFactory(new HttpComponentsClientHttpRequestFactory());
restTemplate.getMessageConverters().add(new MappingJackson2HttpMessageConverter());
ResponseEntity<String> response = restTemplate.exchange(url, HttpMethod.POST, requestEntity,String.class)

帖子正文格式将是这样的

[json={"ln":"Kiat","CountryName":"Malaysia","CityName":"Kuala Lumpur"}]

4

1 回答 1

0

(在问题编辑中回答。转换为社区 wiki 答案。请参阅没有答案的问题,但问题在评论中解决(或在聊天中扩展)

OP写道:

问题解决了。解决方案:

要使用RestTemplate,如果您不确定需要哪些转换器,则必须在构造函数中设置 TRUE。RestTemplate restTemplate = new RestTemplate(true);有了这个,它将包括所有标准转换器。但这有点浪费,因为您必须包含所有不需要的转换器。

对于我的情况,经过测试,我发现我需要两个转换器才能使我的 HTTP 发布成功,它们是

restTemplate.getMessageConverters().add(new FormHttpMessageConverter());
restTemplate.getMessageConverters().add(new StringHttpMessageConverter());

我不知道我们需要什么转换器组合;也许有人有更深层次的解释?

于 2015-01-31T17:37:27.427 回答