1,JSONObject json对象,就是一个键对应一个值,使用的是大括号{ },如:{key:value} 2,JSONArray json数组,使用中括号[ ],只不过数组里面的项也是json键值对格式的 Json对象中添加的是键值对,JSONArray中添加的是Json对象 import net.sf.json.JSONArray; import net.sf.json.JSONObject; import org.junit.Test; import java.util.ArrayLi