java对象与json对象之间互相转换实现方法示例
短信预约 -IT技能 免费直播动态提醒
本文实例讲述了java对象与json对象之间互相转换实现方法。分享给大家供大家参考,具体如下:
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() { 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")); } private static void TestJsonBean() { Student student = new Student(); student.setId(1); student.setName("jag"); student.setSex("man"); student.setAge(25); student.setHobby(new String[]{"篮球","上网","跑步","游戏"}); JSONObject jsonStu = JSONObject.fromObject(student); System.out.println(jsonStu.toString()); System.out.println(jsonStu.getJSONArray("hobby")); Student stu = (Student) JSONObject.toBean(jsonStu, Student.class); System.out.println(stu.getName()); 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()); Student stud = (Student) JSONObject.toBean(jsonObj,Student.class); System.out.println(stud.getName()); }}
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
java对象与json对象之间互相转换实现方法示例
下载Word文档到电脑,方便收藏和打印~
下载Word文档
猜你喜欢
java对象与json对象之间互相转换实现方法示例
本文实例讲述了java对象与json对象之间互相转换实现方法。分享给大家供大家参考,具体如下:import java.util.ArrayList;import java.util.Collection;import java.util.I
2023-05-30
java对象怎么与JSON互相转换
这篇文章将为大家详细讲解有关java对象怎么与JSON互相转换,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。具体方法如下:import java.beans.IntrospectionExc
2023-05-31
2023-10-03
2023-10-23
Java实现的时间戳与date对象相互转换功能示例
本文实例讲述了Java实现的时间戳与date对象相互转换功能。分享给大家供大家参考,具体如下:一.日期转换为时间戳public long getTimestamp() throws ParseException{ Date date1 =
2023-05-31
2023-09-04
2024-04-02
2023-08-31
2024-04-02
Java中JavaBean对象和Map的互相转换方法实例
为什么需要将javaBean和map进行转换,在很多应用场景中,需要将key=value形式的数据与javaBean对象相互转换,下面这篇文章主要给大家介绍了关于Java中JavaBean对象和Map的互相转换的相关资料,需要的朋友可以参考下
2022-11-16
Java中BeanMap怎么实现对象与Map相互转换
这篇文章主要介绍“Java中BeanMap怎么实现对象与Map相互转换”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Java中BeanMap怎么实现对象与Map相互转换”文章能帮助大家解决问题。ja
2023-06-29
FastJson对于JSON格式字符串、JSON对象及JavaBean之间的相互转换操作
fastJson对于json格式字符串的解析主要用到了一下三个类:JSON:fastJson的解析器,用于JSON格式字符串与JSON对象及javaBean之间的转换。JSONObject:fastJson提供的json对象。JSONArr
2023-05-30
JSON与Java对象之间的转化方法是什么
本篇内容介绍了“JSON与Java对象之间的转化方法是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!前言在现在的日常开发中,不管前端还是
2023-07-05
2024-04-02
javascript实现json字符串与对象转换的方法
这篇文章主要介绍“javascript实现json字符串与对象转换的方法”,在日常操作中,相信很多人在javascript实现json字符串与对象转换的方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”jav
2023-06-14
2024-04-02
2023-09-05
python实现class对象转换成json/字典的方法
本文实例讲述了python实现class对象转换成json字典的方法。分享给大家供大家参考,具体如下:# -*- encoding: UTF-8 -*-
class Student:name = ''age = 0def __init__(
2022-06-04
2024-04-02