java对象和json对象之间互相转换

1 篇文章 0 订阅

转自:https://www.cnblogs.com/austinspark-jessylu/p/5821687.html

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;

import net.sf.json.JSONArray;
import net.sf.json.JSONObject;

public class MainClass {

public static void main(String[] args) {
TestJsonBean();
TestJsonAttribute();
TestJsonArray();	
}

@SuppressWarnings("rawtypes")
private static void TestJsonArray() {
Student student1 = new Student();
student1.setId(1);
student1.setName("jag");
student1.setSex("man");
student1.setAge(25);
student1.setHobby(new String[]{"篮球","游戏"});

Student student2 = new Student();
student2.setId(2);
student2.setName("tom");
student2.setSex("woman");
student2.setAge(23);
student2.setHobby(new String[]{"上网","跑步"});

List<Student> list = new ArrayList<Student>();
list.add(student1);
list.add(student2);

JSONArray jsonArray = JSONArray.fromObject(list);
System.out.println(jsonArray.toString());

JSONArray new_jsonArray=JSONArray.fromObject(jsonArray.toArray());
Collection java_collection=JSONArray.toCollection(new_jsonArray);
if(java_collection!=null && !java_collection.isEmpty())
{
Iterator it=java_collection.iterator();
while(it.hasNext())
{
JSONObject jsonObj=JSONObject.fromObject(it.next());
Student stu=(Student) JSONObject.toBean(jsonObj,Student.class);
System.out.println(stu.getName());
}
}
}

private static void TestJsonAttribute() {
/**
* 创建json对象并为该对象设置属性
*/
JSONObject jsonObj = new JSONObject();
jsonObj.put("Int_att",25);//添加int型属性
jsonObj.put("String_att","str");//添加string型属性
jsonObj.put("Double_att",12.25);//添加double型属性
jsonObj.put("Boolean_att",true);//添加boolean型属性
//添加JSONObject型属性
JSONObject jsonObjSon = new JSONObject();
jsonObjSon.put("id", 1);
jsonObjSon.put("name", "tom");
jsonObj.put("JSONObject_att",jsonObjSon);
//添加JSONArray型属性
JSONArray jsonArray = new JSONArray();
jsonArray.add("array0");
jsonArray.add("array1");
jsonArray.add("array2");
jsonArray.add("array3");
jsonObj.put("JSONArray_att", jsonArray);
System.out.println(jsonObj.toString());
System.out.println("Int_att:"+jsonObj.getInt("Int_att"));
System.out.println("String_att:"+jsonObj.getString("String_att"));
System.out.println("Double_att:"+jsonObj.getDouble("Double_att"));
System.out.println("Boolean_att:"+jsonObj.getBoolean("Boolean_att"));
System.out.println("JSONObject_att:"+jsonObj.getJSONObject("JSONObject_att"));
System.out.println("JSONArray_att:"+jsonObj.getJSONArray("JSONArray_att"));
}

/**
* java对象与json对象互相转换
*/
private static void TestJsonBean() {
/**
* 创建java对象
*/
Student student = new Student();
student.setId(1);
student.setName("jag");
student.setSex("man");
student.setAge(25);
student.setHobby(new String[]{"篮球","上网","跑步","游戏"});
/**
* java对象转换成json对象,并获取json对象属性
*/
JSONObject jsonStu = JSONObject.fromObject(student);
System.out.println(jsonStu.toString());
System.out.println(jsonStu.getJSONArray("hobby"));
/**
* json对象转换成java对象,并获取java对象属性
*/
Student stu = (Student) JSONObject.toBean(jsonStu, Student.class);
System.out.println(stu.getName());
/**
* 创建json对象
*/
JSONObject jsonObj = new JSONObject();
jsonObj.put("id",1);
jsonObj.put("name","张勇");
jsonObj.put("sex","男");
jsonObj.put("age",24);
//jsonObj.put("hobby",new String[]{"上网","游戏","跑步","音乐"});
//System.out.println(jsonObj.toString());
/**
* json对象转换成java对象
*/
Student stud = (Student) JSONObject.toBean(jsonObj,Student.class);
System.out.println(stud.getName());	
}
}

 

Java中没有结构体的概念,但是可以使用类或者对象来模拟结构体的功能。对于类或者对象转换JSON格式的字符串,可以使用Jackson、Gson等第三方库来实现。 下面是一个使用Jackson将Java对象转换JSON格式的示例: ```java import com.fasterxml.jackson.databind.ObjectMapper; public class Person { private String name; private int age; private String address; // 省略 getter 和 setter 方法 public static void main(String[] args) throws Exception { ObjectMapper mapper = new ObjectMapper(); Person person = new Person(); person.setName("张三"); person.setAge(18); person.setAddress("北京市"); String jsonStr = mapper.writeValueAsString(person); System.out.println(jsonStr); } } ``` 输出结果如下: ``` {"name":"张三","age":18,"address":"北京市"} ``` 对于JSON格式的字符串转换Java对象或者Map,也可以使用Jackson库来实现。 下面是一个使用Jackson将JSON格式的字符串转换Java对象的示例: ```java import com.fasterxml.jackson.databind.ObjectMapper; public class Person { private String name; private int age; private String address; // 省略 getter 和 setter 方法 public static void main(String[] args) throws Exception { ObjectMapper mapper = new ObjectMapper(); String jsonStr = "{\"name\":\"张三\",\"age\":18,\"address\":\"北京市\"}"; Person person = mapper.readValue(jsonStr, Person.class); System.out.println(person.getName()); System.out.println(person.getAge()); System.out.println(person.getAddress()); } } ``` 输出结果如下: ``` 张三 18 北京市 ``` 对于JSON格式的字符串转换成Map,也可以使用Jackson库来实现。 下面是一个使用Jackson将JSON格式的字符串转换为Map的示例: ```java import com.fasterxml.jackson.databind.ObjectMapper; import java.util.Map; public class Test { public static void main(String[] args) throws Exception { ObjectMapper mapper = new ObjectMapper(); String jsonStr = "{\"name\":\"张三\",\"age\":18,\"address\":\"北京市\"}"; Map<String, Object> map = mapper.readValue(jsonStr, Map.class); System.out.println(map.get("name")); System.out.println(map.get("age")); System.out.println(map.get("address")); } } ``` 输出结果如下: ``` 张三 18 北京市 ``` 除了Jackson库,还可以使用Gson库来实现Java对象JSON格式的字符串之间转换。Gson库的用法与Jackson库类似,这里不再赘述。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值