代码需验证后进行修改才可使用,目前可使用此代码进行请求,根据问题进行修改。

    1. import HttpStatus = org.apache.http.HttpStatus;//视情况删除
    2. import org.apache.http.StatusLine;
    3. import CloseableHttpResponse = org.apache.http.client.methods.CloseableHttpResponse;//视情况删除
    4. import org.apache.http.client.methods.HttpPost;
    5. import org.apache.http.entity.StringEntity;
    6. import CloseableHttpClient = org.apache.http.impl.client.CloseableHttpClient;
    7. import org.apache.http.impl.client.HttpClients;
    8. import org.apache.http.util.EntityUtils;
    9. public class PostUrl{
    10. public String post_invoke(){
    11. //接口地址
    12. String url = "http://10.0.37.16:6080/srm/userloginservlet";
    13. String params = "{\"pageSize\":2000,\"currentPage\":1,\"roleId\": \"srm_accessWhiteList\",\"filterString\" :\"\"}";
    14. //模拟请求
    15. HttpClients httpClient = HttpClients.createDefault();
    16. HttpPost httpPost = new HttpPost(url);
    17. try{
    18. //String 转换为JSON
    19. StringEntity paramsEntity = new StringEntity(params);
    20. httpPost.setHeader('Content-Type', 'application/json;charset=utf-8');
    21. httpPost.setEntity(paramsEntity);
    22. Object resultObject = httpClient.execute(httpPost);
    23. StatusLine status = res.getStatusLine();
    24. if (status.getStatusCode() == 200) {
    25. String result = EntityUtils.toString(result.getEntity(), 'utf-8');
    26. }else{
    27. println('接口请求失败:'+status);
    28. }
    29. }catch(Exception e){
    30. System.out.println(e);
    31. }
    32. return result;
    33. }
    34. }