• json对象与javaBean,String字符创之间相互转换的方法


    原创:转载请注明出处

    package com.allcam.system.utils;

    import com.fasterxml.jackson.databind.ObjectMapper;

    public class JSonUtils
    {
        static ObjectMapper objectMapper;
        
        /**
         *      使用泛型方法,把json字符串转换为相应的JavaBean对象。
         *      (1)转换为普通JavaBean:readValue(json,Student.class)
         *      (2)转换为List:readValue(json,List.class).但是如果我们想把json转换为特定类型的List,比如List<Student>,就不能直接进行转换了。
         *         因为readValue(json,List.class)返回的其实是List<Map>类型,你不能指定readValue()的第二个参数是List<Student>.class,所以不能直接转换。
         *         我们可以把readValue()的第二个参数传递为Student[].class.然后使用Arrays.asList();方法把得到的数组转换为特定类型的List。
         *      (3)转换为Map:readValue(json,Map.class)
         * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;我们使用泛型,得到的也是泛型
         *
         * @param content 要转换的JavaBean类型
         * @param valueType 原始json字符串数据
         * @return JavaBean对象
         */
        public static <T> T readValue(String content, Class<T> valueType)
        {
            if (objectMapper == null)
            {
                objectMapper = new ObjectMapper();
            }
            try
            {
                return objectMapper.readValue(content, valueType);
            }
            catch (Exception e)
            {
                e.printStackTrace();
            }
            
            return null;
        }
        
        /**
         *      把JavaBean转换为json字符串
         *      (1)普通对象转换:toJson(Student)
         *      (2)List转换:toJson(List)
         *      (3)Map转换:toJson(Map)
         * 我们发现不管什么类型,都可以直接传入这个方法
         *
         * @param object JavaBean对象
         * @return json字符串
         */
        public static String toJSon(Object object)
        {
            if (objectMapper == null)
            {
                objectMapper = new ObjectMapper();
            }
            try
            {
                return objectMapper.writeValueAsString(object);
            }
            catch (Exception e)
            {
                e.printStackTrace();
            }
            
            return null;
        }
    }

  • 相关阅读:
    Docker 常用命令
    SpringMVC Controller 返回值几种类型
    SSM框架整合(IntelliJ IDEA + maven + Spring + SpringMVC + MyBatis)
    SSM框架——详细整合教程(Spring+SpringMVC+MyBatis)
    springmvc 自定义拦截器实现未登录用户的拦截
    使用idea搭建SSM框架
    详解intellij idea搭建SSM框架(spring+maven+mybatis+mysql+junit)(下)
    IntelliJ IDEA maven项目new里没有package
    ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO) ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: YES)
    MySql 5.7密码查看或修改
  • 原文地址:https://www.cnblogs.com/zjdxr-up/p/7218527.html
Copyright © 2020-2023  润新知