java 操作json(org.json包)_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java 操作json(org.json包)

java 操作json(org.json包)

 2013/10/10 0:33:34  gqsunrise  程序员俱乐部  我要评论(0)
  • 摘要:注:首先导入org.json下面的包packagecom.sun;importorg.json.JSONArray;importorg.json.JSONException;importorg.json.JSONObject;publicclassTest{publicstaticvoidmain(Stringargs[])throwsJSONException{StringjsonContent="{'hello':world,'abc':'xyz'}"
  • 标签:Java 操作 JSON JS
class="java" name="code">注:首先导入org.json下面的包
 
package com.sun;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

public class Test {

	public static void main(String args[]) throws JSONException {
		String jsonContent = "{'hello':world,'abc':'xyz'}";
		JSONObject jsonObject = new JSONObject(jsonContent);
		String str1 = jsonObject.getString("hello");
		String str2 = jsonObject.getString("abc");
		System.out.println(str1);
		System.out.println(str2);

		System.out.println("------------------");
		jsonContent = "[{'hello':333,'abc':'false','xyz':{'a':1,'b':'ab'}},{'hello':555,'abc':'true','xyz':{'a':2,'b':'ba'}}]";
		JSONArray jsonArray = new JSONArray(jsonContent);
		for(int i=0;i<jsonArray.length();i++){
			JSONObject jsonobject2=jsonArray.getJSONObject(i);
			int value1=jsonobject2.getInt("hello");
			boolean value2=jsonobject2.getBoolean("abc");
//			String value3=jsonobject2.getString("xyz");
			JSONObject jsonobject3=jsonobject2.getJSONObject("xyz");
			int value4=jsonobject3.getInt("a");
			String value5=jsonobject3.getString("b");
			System.out.println(value1);
			System.out.println(value2);
			System.out.println(value4);
			System.out.println(value5);			
		}
		
	}
}
输出结果
world
xyz
------------------
333
false
1
ab
555
true
2
ba

?

发表评论
用户名: 匿名