java代码实现mock数据

2019-08-16 10:43:52来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

java代码实现mock数据

废话不多说,直接上代码。

 1  /**
 2      * 发get请求,获取文本
 3      *
 4      * @param getUrl
 5      * @return 网页context
 6      */
 7     public static String sendGetRequest(String getUrl) {
 8         String result = null;
 9         CloseableHttpClient httpClient = HttpClients.createDefault();
10         HttpGet get = new HttpGet(getUrl);
11         CloseableHttpResponse response = null;
12         try {
13             response = httpClient.execute(get);
14             if (response != null) {
15                 HttpEntity resEntity = response.getEntity();
16                 if (resEntity != null) {
17                     result = EntityUtils.toString(resEntity, "UTF-8");
18                 }
19             }
20             return result;
21         } catch (IOException e) {
22             e.printStackTrace();
23         } finally {
24             try {
25                 httpClient.close();
26                 if (response != null) {
27                     response.close();
28                 }
29             } catch (IOException e) {
30                 e.printStackTrace();
31             }
32         }
33         return null;
34     }

通过上述代码,传入easymock的伪json地址,获取Json字符串


原文链接:https://www.cnblogs.com/longmaodaxia/p/11212644.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:【小家Spring】聊聊Spring中的数据绑定 --- DataBinder本尊(源

下一篇:【小家Spring】Spring IoC是如何使用BeanWrapper和Java内省结合