-
全jar包实现Java操作JSON
资源介绍
使用JSONObject, JSONArray的全套完整jar包,绝对好用。另外附上例子一枚
package com.jjzy.test;
import java.util.Iterator;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
public class TestJson {
public static void main(String[] args) {
String gg = "{\"name\":[\"啦啦\",\"哈哈\"]}";
JSONObject jsonObject = JSONObject.fromObject(gg);
JSONArray jsonArr = jsonObject.getJSONArray("name");
@SuppressWarnings("unchecked")
Iterator