JSON学习:JsonArray遍历方法

本文介绍了在Maven项目中使用JSON所需的依赖包,并通过一个示例展示了如何遍历JSONArray并获取每个对象中的属性值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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

<!-- 引入json依赖  -->
<dependency>
   <groupId>net.sf.json-lib</groupId>
   <artifactId>json-lib</artifactId>
   <version>2.4</version>
   <classifier>jdk15</classifier>
</dependency>
<dependency>
   <groupId>commons-beanutils</groupId>
   <artifactId>commons-beanutils</artifactId>
   <version>1.7.0</version>
</dependency>
<dependency>
   <groupId>commons-collections</groupId>
   <artifactId>commons-collections</artifactId>
   <version>3.1</version>
</dependency>
<dependency>
   <groupId>commons-lang</groupId>
   <artifactId>commons-lang</artifactId>
   <version>2.5</version>
</dependency>
<dependency>
   <groupId>net.sf.ezmorph</groupId>
   <artifactId>ezmorph</artifactId>
   <version>1.0.3</version>
</dependency>

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<json.size();i++){
			  JSONObject job = json.getJSONObject(i);   // 遍历 jsonarray 数组,把每一个对象转成 json 对象
			  System.out.println(job.get("status")) ;   // 得到 每个对象中的属性值 
		  }
		}
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值