作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这段代码工作正常...因为我对此进行了很多搜索,所以我决定将此代码放在想要向具有 URL 的服务器发送 json 请求的人中.这是HttpClientComponent
public static boolean sendJsonTo(String URL,JSONObject jo) throws IOException {
CloseableHttpClient httpClient= HttpClientBuilder.create().build();
try {
HttpPost request = new HttpPost(URL);
StringEntity params = new StringEntity(jo.toString());
request.addHeader("content-type", "application/json");
request.setEntity(params);
HttpResponse response=httpClient.execute(request);
} catch (Exception ex) {
ex.printStackTrace();
return false;
// handle exception here
} finally {
httpClient.close();
}
return true;
}
我正在使用this json version
这是 make json 对象的示例代码
public static JSONObject test(String firstname,String lastname){
JSONObject jup=new JSONObject();
jup.put("fname",firstname);
jup.put("lname",lastname);
return jup;
}
最佳答案
处理来自服务器的响应:
试试这个:
HttpEntity entity = httpResponse.getEntity();
String response = EntityUtils.toString(entity);
或者像这样
HttpEntity entity = response.getEntity();
JsonFactory jsonf = new JsonFactory();
// try with resource is not strictly necessary here
// but is a good practice
try(InputStream instream = entity.getContent()) { JsonParser jsonParser = jsonf.createParser(instream);
// Use the parser to deserialize the object from the content stream
return stuff;
}
关于java - 使用 httpclientcomponents 向服务器发送 JSON 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34480601/
这段代码工作正常...因为我对此进行了很多搜索,所以我决定将此代码放在想要向具有 URL 的服务器发送 json 请求的人中.这是HttpClientComponent public static b
我是一名优秀的程序员,十分优秀!