JSON学习:JsonArray遍历方法

1.Maven项目使用JSON需要的依赖包



   net.sf.json-lib
   json-lib
   2.4
   jdk15


   commons-beanutils
   commons-beanutils
   1.7.0


   commons-collections
   commons-collections
   3.1


   commons-lang
   commons-lang
   2.5


   net.sf.ezmorph
   ezmorph
   1.0.3

2.遍历JSONArray

package cn.jm.action;

import net.sf.json.JSONArray;
import net.sf.json.JSONObject;

/**
 *
 * @ClassName: Test
 * @Description: TODO
 * @Author Ming
 * @Date 2018年7月23日 下午8:41:28
 * @Vesion 1.0
 * 
 */
public class Test {

	public static void main(String[] args) {

		String str = "[{'status':'有效','name':'技限公司','code':'001'}," + 
			         "{'status':'无效','name':'有限公司','code':'005'}]";
		JSONArray json = JSONArray.fromObject(str);  
		if(json.size()>0){
		  for(int i=0;i

 

你可能感兴趣的:(Java编程)