Java中Json字符串直接转换为对象(包括多层List集合 嵌套)

2024-05-27 07:38

本文主要是介绍Java中Json字符串直接转换为对象(包括多层List集合 嵌套),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

http://blog.csdn.net/catoop/article/details/42744705

使用到的类:net.sf.json.JSONObject  

使用JSON时,除了要导入JSON网站上面下载的json-lib-2.2-jdk15.jar包之外,还必须有其它几个依赖包:commons-beanutils.jar,commons-httpclient.jar,commons-lang.jar,ezmorph.jar,morph-1.0.1.jar 

下面是例子代码:

[java]  view plain copy
在CODE上查看代码片 派生到我的代码片
  1. // JSON转换  
  2. JSONObject jsonObj = JSONObject.fromObject(jsonStrBody);  
  3.   
  4. Map<String, Class> classMap = new HashMap<String, Class>();  
  5.          classMap.put("results", WeatherBean_Baidu_City.class);  
  6.          classMap.put("index", WeatherBean_Baidu_City_Index.class);    
  7.          classMap.put("weather_data", WeatherBean_Baidu_City_Weatherdata.class);    
  8.          // 将JSON转换成WeatherBean_Baidu    
  9.          WeatherBean_Baidu weather = (WeatherBean_Baidu) JSONObject.toBean(jsonObj,    
  10.                 WeatherBean_Baidu.class, classMap);   
  11.          System.out.println(weather.getResults());  

使用到的几个JAVA类代码:

[html]  view plain copy
在CODE上查看代码片 派生到我的代码片
  1. package com.lenovo.conference.entity.vo;  
  2.   
  3. import java.io.Serializable;  
  4. import java.util.List;  
  5.   
  6. /**  
  7.  * 天气Bean  
  8.  *   
  9.  * @author SHANHY  
  10.  *   
  11.  */  
  12. @SuppressWarnings("serial")  
  13. public class WeatherBean_Baidu implements Serializable {  
  14.   
  15.     private String error;//错误号  
  16.     private String status;//状态值  
  17.     private String date;//日期  
  18.     private List<WeatherBean_Baidu_City> results;//城市天气预报集合(因为一次可以查询多个城市)  
  19.   
  20.     public WeatherBean_Baidu() {  
  21.         super();  
  22.     }  
  23.   
  24.     public String getError() {  
  25.         return error;  
  26.     }  
  27.   
  28.     public void setError(String error) {  
  29.         this.error = error;  
  30.     }  
  31.   
  32.     public String getStatus() {  
  33.         return status;  
  34.     }  
  35.   
  36.     public void setStatus(String status) {  
  37.         this.status = status;  
  38.     }  
  39.   
  40.     public String getDate() {  
  41.         return date;  
  42.     }  
  43.   
  44.     public void setDate(String date) {  
  45.         this.date = date;  
  46.     }  
  47.   
  48.     public List<WeatherBean_Baidu_City> getResults() {  
  49.         return results;  
  50.     }  
  51.   
  52.     public void setResults(List<WeatherBean_Baidu_City> results) {  
  53.         this.results = results;  
  54.     }  
  55.   
  56. }  

[java]  view plain copy
在CODE上查看代码片 派生到我的代码片
  1. package com.lenovo.conference.entity.vo;  
  2.   
  3. import java.io.Serializable;  
  4. import java.util.List;  
  5.   
  6. /** 
  7.  * 天气Bean 
  8.  *  
  9.  * @author SHANHY 
  10.  *  
  11.  */  
  12. @SuppressWarnings("serial")  
  13. public class WeatherBean_Baidu_City implements Serializable {  
  14.   
  15.     private String currentCity;//城市名称  
  16.     private String pm25;//pm2.5值  
  17.     private List<WeatherBean_Baidu_City_Index> index;//指数集合  
  18.     private List<WeatherBean_Baidu_City_Weatherdata> weather_data;//几天的天气集合  
  19.   
  20.     public WeatherBean_Baidu_City() {  
  21.         super();  
  22.     }  
  23.   
  24.     public String getCurrentCity() {  
  25.         return currentCity;  
  26.     }  
  27.   
  28.     public void setCurrentCity(String currentCity) {  
  29.         this.currentCity = currentCity;  
  30.     }  
  31.   
  32.     public String getPm25() {  
  33.         return pm25;  
  34.     }  
  35.   
  36.     public void setPm25(String pm25) {  
  37.         this.pm25 = pm25;  
  38.     }  
  39.   
  40.     public List<WeatherBean_Baidu_City_Index> getIndex() {  
  41.         return index;  
  42.     }  
  43.   
  44.     public void setIndex(List<WeatherBean_Baidu_City_Index> index) {  
  45.         this.index = index;  
  46.     }  
  47.   
  48.     public List<WeatherBean_Baidu_City_Weatherdata> getWeather_data() {  
  49.         return weather_data;  
  50.     }  
  51.   
  52.     public void setWeather_data(  
  53.             List<WeatherBean_Baidu_City_Weatherdata> weather_data) {  
  54.         this.weather_data = weather_data;  
  55.     }  
  56.   
  57. }  

[java]  view plain copy
在CODE上查看代码片 派生到我的代码片
  1. package com.lenovo.conference.entity.vo;  
  2.   
  3. import java.io.Serializable;  
  4.   
  5. /** 
  6.  * 天气Bean 
  7.  *  
  8.  * @author SHANHY 
  9.  *  
  10.  */  
  11. @SuppressWarnings("serial")  
  12. public class WeatherBean_Baidu_City_Weatherdata implements Serializable {  
  13.   
  14.     private String date;// 日期  
  15.     private String dayPictureUrl;// 白天的天气图片  
  16.     private String nightPictureUrl;// 晚上的天气图片  
  17.     private String weather;// 天气  
  18.     private String wind;// 风向  
  19.     private String temperature;// 温度  
  20.   
  21.     public WeatherBean_Baidu_City_Weatherdata() {  
  22.         super();  
  23.     }  
  24.   
  25.     public String getDate() {  
  26.         return date;  
  27.     }  
  28.   
  29.     public void setDate(String date) {  
  30.         this.date = date;  
  31.     }  
  32.   
  33.     public String getDayPictureUrl() {  
  34.         return dayPictureUrl;  
  35.     }  
  36.   
  37.     public void setDayPictureUrl(String dayPictureUrl) {  
  38.         this.dayPictureUrl = dayPictureUrl;  
  39.     }  
  40.   
  41.     public String getNightPictureUrl() {  
  42.         return nightPictureUrl;  
  43.     }  
  44.   
  45.     public void setNightPictureUrl(String nightPictureUrl) {  
  46.         this.nightPictureUrl = nightPictureUrl;  
  47.     }  
  48.   
  49.     public String getWeather() {  
  50.         return weather;  
  51.     }  
  52.   
  53.     public void setWeather(String weather) {  
  54.         this.weather = weather;  
  55.     }  
  56.   
  57.     public String getWind() {  
  58.         return wind;  
  59.     }  
  60.   
  61.     public void setWind(String wind) {  
  62.         this.wind = wind;  
  63.     }  
  64.   
  65.     public String getTemperature() {  
  66.         return temperature;  
  67.     }  
  68.   
  69.     public void setTemperature(String temperature) {  
  70.         this.temperature = temperature;  
  71.     }  
  72.   
  73. }  

[java]  view plain copy
在CODE上查看代码片 派生到我的代码片
  1. package com.lenovo.conference.entity.vo;  
  2.   
  3. import java.io.Serializable;  
  4.   
  5. /** 
  6.  * 天气Bean 
  7.  *  
  8.  * @author SHANHY 
  9.  *  
  10.  */  
  11. @SuppressWarnings("serial")  
  12. public class WeatherBean_Baidu_City_Index implements Serializable {  
  13.   
  14.     private String title;//标题  
  15.     private String zs;//舒适度  
  16.     private String tipt;//指数简述  
  17.     private String des;//指数概述  
  18.   
  19.     public WeatherBean_Baidu_City_Index() {  
  20.         super();  
  21.     }  
  22.   
  23.     public String getTitle() {  
  24.         return title;  
  25.     }  
  26.   
  27.     public void setTitle(String title) {  
  28.         this.title = title;  
  29.     }  
  30.   
  31.     public String getZs() {  
  32.         return zs;  
  33.     }  
  34.   
  35.     public void setZs(String zs) {  
  36.         this.zs = zs;  
  37.     }  
  38.   
  39.     public String getTipt() {  
  40.         return tipt;  
  41.     }  
  42.   
  43.     public void setTipt(String tipt) {  
  44.         this.tipt = tipt;  
  45.     }  
  46.   
  47.     public String getDes() {  
  48.         return des;  
  49.     }  
  50.   
  51.     public void setDes(String des) {  
  52.         this.des = des;  
  53.     }  
  54.   
  55. }  

例子中解析所对应的JSON字符串

[html]  view plain copy
在CODE上查看代码片 派生到我的代码片
  1. {"error":0,"status":"success","date":"2015-01-15","results":[{"currentCity":"南京","pm25":"83","index":[{"title":"穿衣","zs":"较冷","tipt":"穿衣指数","des":"建议着厚外套加毛衣等服装。年老体弱者宜着大衣、呢外套加羊毛衫。"},{"title":"洗车","zs":"较适宜","tipt":"洗车指数","des":"较适宜洗车,未来一天无雨,风力较小,擦洗一新的汽车至少能保持一天。"},{"title":"旅游","zs":"适宜","tipt":"旅游指数","des":"天气较好,气温稍低,会感觉稍微有点凉,不过也是个好天气哦。适宜旅游,可不要错过机会呦!"},{"title":"感冒","zs":"少发","tipt":"感冒指数","des":"各项气象条件适宜,无明显降温过程,发生感冒机率较低。"},{"title":"运动","zs":"较不宜","tipt":"运动指数","des":"阴天,且天气寒冷,推荐您在室内进行低强度运动;若坚持户外运动,请选择合适的运动并注意保暖。"},{"title":"紫外线强度","zs":"最弱","tipt":"紫外线强度指数","des":"属弱紫外线辐射天气,无需特别防护。若长期在户外,建议涂擦SPF在8-12之间的防晒护肤品。"}],"weather_data":[{"date":"周四 01月15日 (实时:6℃)","dayPictureUrl":"http://api.map.baidu.com/images/weather/day/yin.png","nightPictureUrl":"http://api.map.baidu.com/images/weather/night/duoyun.png","weather":"阴转多云","wind":"北风微风","temperature":"8 ~ 4℃"},{"date":"周五","dayPictureUrl":"http://api.map.baidu.com/images/weather/day/duoyun.png","nightPictureUrl":"http://api.map.baidu.com/images/weather/night/qing.png","weather":"多云转晴","wind":"西北风3-4级","temperature":"12 ~ 0℃"},{"date":"周六","dayPictureUrl":"http://api.map.baidu.com/images/weather/day/qing.png","nightPictureUrl":"http://api.map.baidu.com/images/weather/night/duoyun.png","weather":"晴转多云","wind":"东北风3-4级","temperature":"8 ~ 0℃"},{"date":"周日","dayPictureUrl":"http://api.map.baidu.com/images/weather/day/qing.png","nightPictureUrl":"http://api.map.baidu.com/images/weather/night/qing.png","weather":"晴","wind":"西风微风","temperature":"10 ~ -1℃"}]},{"currentCity":"徐州","pm25":"154","index":[{"title":"穿衣","zs":"较冷","tipt":"穿衣指数","des":"建议着厚外套加毛衣等服装。年老体弱者宜着大衣、呢外套加羊毛衫。"},{"title":"洗车","zs":"较适宜","tipt":"洗车指数","des":"较适宜洗车,未来一天无雨,风力较小,擦洗一新的汽车至少能保持一天。"},{"title":"旅游","zs":"适宜","tipt":"旅游指数","des":"天气较好,但丝毫不会影响您出行的心情。温度适宜又有微风相伴,适宜旅游。"},{"title":"感冒","zs":"较易发","tipt":"感冒指数","des":"天气较凉,较易发生感冒,请适当增加衣服。体质较弱的朋友尤其应该注意防护。"},{"title":"运动","zs":"较不宜","tipt":"运动指数","des":"天气较好,但考虑天气寒冷,推荐您进行各种室内运动,若在户外运动请注意保暖并做好准备活动。"},{"title":"紫外线强度","zs":"最弱","tipt":"紫外线强度指数","des":"属弱紫外线辐射天气,无需特别防护。若长期在户外,建议涂擦SPF在8-12之间的防晒护肤品。"}],"weather_data":[{"date":"周四 01月15日 (实时:6℃)","dayPictureUrl":"http://api.map.baidu.com/images/weather/day/duoyun.png","nightPictureUrl":"http://api.map.baidu.com/images/weather/night/duoyun.png","weather":"多云","wind":"南风微风","temperature":"10 ~ 3℃"},{"date":"周五","dayPictureUrl":"http://api.map.baidu.com/images/weather/day/duoyun.png","nightPictureUrl":"http://api.map.baidu.com/images/weather/night/duoyun.png","weather":"多云","wind":"北风3-4级","temperature":"11 ~ -4℃"},{"date":"周六","dayPictureUrl":"http://api.map.baidu.com/images/weather/day/duoyun.png","nightPictureUrl":"http://api.map.baidu.com/images/weather/night/duoyun.png","weather":"多云","wind":"东风微风","temperature":"6 ~ -4℃"},{"date":"周日","dayPictureUrl":"http://api.map.baidu.com/images/weather/day/duoyun.png","nightPictureUrl":"http://api.map.baidu.com/images/weather/night/duoyun.png","weather":"多云","wind":"西风3-4级","temperature":"11 ~ -1℃"}]}]} 
附上项目地址 http://download.csdn.net/detail/u011001084/9729342

这篇关于Java中Json字符串直接转换为对象(包括多层List集合 嵌套)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1006849

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

hdu1254(嵌套bfs,两次bfs)

/*第一次做这种题感觉很有压力,思路还是有点混乱,总是wa,改了好多次才ac的思路:把箱子的移动当做第一层bfs,队列节点要用到当前箱子坐标(x,y),走的次数step,当前人的weizhi(man_x,man_y),要判断人能否将箱子推到某点时要嵌套第二层bfs(人的移动);代码如下:

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听