如何实现 一个系统去调用另一个系统的接口

一、简介
在Spring-Boot项目开发中,存在着本模块的代码需要访问外面模块接口,或外部url链接的需求,本文提供一种解决方案供大家参考
二、实现springboot的接口调用

	HashMap<String, Object> map = new HashMap<>();
      //准备转成jsonObject
      map.put("cabinet_id",cabinet_id);  //将对方需要传的必须参数进行添加到map集合

      HttpClient client = HttpClients.createDefault();
      // 要调用的接口方法
      String url = ""; //请求对方的路径地址
      HttpPost post = new HttpPost(url);
      JSONObject jsonObject = null;
      try {
          StringEntity s = new StringEntity(JSONObject.toJSONString(map)); //JSONObject.toJSONString(map)将map集合转成JSONObject
          s.setContentEncoding("UTF-8");  //字符编码
          s.setContentType("application/json");
          post.setEntity(s);
          //post.addHeader("content-type", "text/xml");  
          HttpResponse res = client.execute(post);
          String response = EntityUtils.toString(res.getEntity()); //将请求回来的json转成String
          System.out.println(response);
          if (res.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
              String result = EntityUtils.toString(res.getEntity());// 返回json格式:
              jsonObject = JSONObject.parseObject(result);
          }
      } catch (Exception e) {
          throw new RuntimeException(e);
      }

返回json格式
在这里插入图片描述

{"meta":{"code":200},"body":[{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":1,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":2,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":3,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":4,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":5,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":6,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":7,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":8,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":9,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":10,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":11,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":12,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":13,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":14,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":15,"box_state":2,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":16,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":17,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":18,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":19,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":20,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":21,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":22,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":23,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":24,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":25,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":26,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":27,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":28,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":29,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":30,"box_state":0,"receiver_phone":"","opening":1,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":31,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":32,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":33,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":34,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":35,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":36,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":37,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":38,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":39,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":40,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":41,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":42,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":43,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":44,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":45,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":46,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":47,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":48,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":49,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":50,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":51,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":52,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":53,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":54,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":55,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":56,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":57,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":58,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":59,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""},{"cabinet_id":"Z2200420007","password":"","sender_phone":"","rent_time":"","box_style":"6","t_package_no":"","box_no":60,"box_state":0,"receiver_phone":"","opening":0,"next_pay_time":""}]}

怎么将接收的json格式的字符串转化为对象数组:java将json格式的字符串转化为对象数组

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值