| | |
| | | |
| | | import cn.hutool.http.HttpRequest; |
| | | import cn.hutool.http.HttpResponse; |
| | | import cn.hutool.json.JSONObject; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | public class RestfulService { |
| | | public static void main(String[] args) { |
| | | String str = "uuuuuu11uuuuuuuuuuuuuuu"; |
| | | System.out.println(str.length()); |
| | | // getWorkReportResultFeedback() https://imes-uat-group.geelycv-test.com |
| | | String json = "{\"code\":\"success\",\"data\":{\"productNum\":\"LCV123456P0600036\",\"stationCode\":\"1HZ01\",\"resultCode\":\"S\",\"resultText\":\"报工成功\"},\"message\":\"API 调用成功\"}"; |
| | | JSONObject jsonObject = new JSONObject(json); |
| | | String code = jsonObject.getStr("code"); |
| | | String resultCode = jsonObject.getJSONObject("data").getStr("resultCode"); |
| | | System.out.println("code: " + code); |
| | | System.out.println("resultCode: " + resultCode); |
| | | } |
| | | |
| | | // public static final String getRealmName = "https://imes-uat-group.geelycv-test.com/api/mom-open/restful/aMesSysIntegration"; |
| | | // |
| | | //// |
| | | // public static final String postRealmName = "https://imes-uat-group.geelycv-test.com/api/mom-open/restful/interface"; |
| | | |
| | | public static final String getRealmName = "https://imes-group.geelycv.com/api/mom-open/restful/aMesSysIntegration"; |