有很多JAVA下的json构造和解析工具,但是作为初学者,应该掌握org.json和json-lib这两种比较简单的解析json数据的方法。
本帖介绍的是使用json-lib来解析简单的json数据。
首先需要导入所需要的或关联的jar包:
本例简单介绍了map、list、bean对象转换成json对象数据和json数据转换成bean对象的测试。
以下是Java测试代码,供参考:
package com;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
/**
* @author Administrator
* 使用json-lib构造和解析Json数据
*
*/
public class JsonTest {
/**
* 构造Json数据
*/
public static String BuildJson(){
//json格式数据解析对象
JSONObject jo=new JSONObject();
//构造两个map、一个list和一个Employee对象
Map<String, String> map1=new HashMap<String, String>();
map1.put("name", "Tom");
map1.put("sex", "male");
map1.put("age", "23");
Map<String, String> map2=new HashMap<String, String>();
map2.put("name", "Bob");
map2.put("sex", "male");
map2.put("age", "24");
List<Map> list=new ArrayList<Map>();
list.add(map1);
list.add(map2);
Employee employee=new Employee();
employee.setName("Rose");
employee.setSex("female");
employee.setAge(20);
//将map转换为JsonArray数据
JSONArray ja1=JSONArray.fromObject(map1);
//将list转换为JsonArray数据
JSONArray ja2=JSONArray.fromObject(list);
//将Bean转换为JSONArray数据
JSONArray ja3=JSONArray.fromObject(employee);
System.out.println("JSONArray对象数据格式:");
System.out.println(ja1.toString());
System.out.println(ja2.toString());
System.out.println(ja3.toString());
//构造json数据,包括一个map和一个Employee对象
jo.put("map", ja1);
jo.put("employee", ja2);
System.out.println("\n最终构造的JSON数据格式:");
System.out.println(jo.toString());
return jo.toString();
}
/**
* 解析Json数据
* jsonString json数据字符串
*/
public static void ParseJson(String jsonString){
//解析employee
JSONObject jb=JSONObject.fromObject(jsonString);
JSONArray ja=jb.getJSONArray("employee");
List<Employee> emplist=new ArrayList<Employee>();
//循环添加Employee对象(可能有多个)
for(int i=0;i<ja.size();i++){
Employee employee=new Employee();
employee.setName(ja.getJSONObject(i).getString("name"));
employee.setSex(ja.getJSONObject(i).getString("sex"));
employee.setAge(ja.getJSONObject(i).getInt("age"));
emplist.add(employee);
}
System.out.println("\n将Json数据转换为Employee对象:");
for(int i=0;i<emplist.size();i++){
Employee emp=emplist.get(i);
System.out.println("name:"+emp.getName()+" sex:"+emp.getSex()+" age:"+emp.getAge());
}
}
/**
* @param args
*
*/
public static void main(String[] args) {
ParseJson(BuildJson());
}
}
测试结果,控制台输出如下图: