博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVA json方式访问,得到值,然后json的解析
阅读量:4879 次
发布时间:2019-06-11

本文共 813 字,大约阅读时间需要 2 分钟。

public static void main(String[] args) {        //客户端json方式访问服务端        JSONObject json = new JSONObject();        json.put("vin", "FX003054");        String result = AdvancedUtil.httpTextRequest("http://localhost:8080/ECMS/maintainRecord/inspection", null, "POST", json.toString(), null);        System.out.println(result);                //取得json返回值        String a = "{\"carlist\":[{\"carno\":\"FX003905\"},{\"carno\":\"FF\"}],\"retval\":1,\"total\":1}";        JSONObject resultJson = JSONObject.fromObject(a);                System.out.println(resultJson.getString("retval"));//取JSON中跟数组同级值                JSONArray jsonArray = resultJson.getJSONArray("carlist");//取JSON数组中值        if(jsonArray != null && jsonArray.size() > 0){            for(int i = 0;i

 

转载于:https://www.cnblogs.com/Linger-wj/p/6734551.html

你可能感兴趣的文章
sgu 103. Traffic Lights
查看>>
poj 3621 Sightseeing Cows
查看>>
hdu 3666 THE MATRIX PROBLEM
查看>>
TopCoder SRM 176 Deranged
查看>>
java 内存模型
查看>>
Javascript中数组与字典(即map)的使用
查看>>
C++不完整的类型
查看>>
memcached(十三)注意事项
查看>>
ITerms2在mac系统下的安装和配色,并和go2shell关联
查看>>
nginx常见面试题1
查看>>
小白用shiro(1)
查看>>
微服务化之无状态化与容器化
查看>>
动态规划LeetCode174地下城游戏
查看>>
Sublime Text 报“Pylinter could not automatically determined the path to lint.py
查看>>
自动化测试用例getText()获取某一个元素的值返回null或空
查看>>
大数智能未来
查看>>
virtualenv和virtualenvwrapper 的安装和使用
查看>>
MAC sublime text 无法自动补齐标签
查看>>
NgBook留言本开发全过程(1)
查看>>
LeetCode-指针法
查看>>