java获取json格式中的值
Posted xyqing525
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java获取json格式中的值相关的知识,希望对你有一定的参考价值。
先右键项目,然后点击properties,然后选中java Builder Path,选择add external jars,引入
需要引入json.jar
package web; import org.json.JSONArray; import org.json.JSONException; public class josn { public static void main(String[] args) throws JSONException { String str = "[{‘columnId‘:5,‘columnName‘:‘人文历史‘},{‘columnId‘:2,‘columnName‘:‘商业视野‘}]}"; JSONArray jsonArray = null; jsonArray = new JSONArray(str); System.out.println(jsonArray.getJSONObject(1).get("columnId")); } }
输出:
2
以上是关于java获取json格式中的值的主要内容,如果未能解决你的问题,请参考以下文章