beanUtils操作总结

2024-08-20 17:32
文章标签 总结 操作 beanutils

本文主要是介绍beanUtils操作总结,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

//使用beanUtils操作bean的属性(第三方)
public class BeanUtilsDemo {

 @Test
 public void test1() throws IllegalAccessException, InvocationTargetException
 { 
  Person1 p1=new Person1();
  
  //BeanUtils只能操作 public 修饰的class
  BeanUtils.setProperty(p1, "name", "p1name");
  System.out.println(p1.getName());
 }
 @Test
 public void test2() throws IllegalAccessException, InvocationTargetException, NoSuchMethodException
 { 
  String name="aaaa";
  String password="123";
  String age="34";
  String birthday="1990-11-09";
  
  Person1 p1=new Person1();
  
  //仅支持8种基本数据类型转换!!
  BeanUtils.setProperty(p1, "name", name);
  BeanUtils.setProperty(p1, "password", password);
  BeanUtils.setProperty(p1, "age", age);
  
  System.out.println(p1.getName());
  System.out.println(p1.getPassword());
  System.out.println(p1.getAge());
  
  //老张代码    birthday 为复合属性,支持属性的级联操作!! BeanUtils还可以操作Map;
  //BeanUtils.setProperty(p1, "birthday.time", birthday);
  //System.out.println(BeanUtils.getProperty(p1, "birthday"));
  
  
  //为了让日期附到bean的birthday属性上, 我们给beanUtils注册一个日期转换器
  //ConvertUtils.register(converter, clazz);
  ConvertUtils.register(new Converter(){  //匿名内部类
   @Override
   public Object convert(Class type, Object value) {
    
    //使用数据时,先检查后使用!!
    if(value==null)
     return null;
    if(!(value instanceof String))
    {
     throw new ConversionException("只支持String类型转换");
    }
    
    String str=(String) value;
    if(str.trim().equals(""))
     return null;
    
    //SimpleDateFormat 使得可以选择任何用户定义的日期-时间格式的模式
    SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
    try {
     //只能是抓取异常,不能抛出比父类更多的异常;
     return sdf.parse(str);
    } catch (ParseException e) {
     // TODO Auto-generated catch block
     
     //若出现异常,封装数据抛给jvm控制台!!异常连不能掉;
     throw new RuntimeException(e);
    }
   }
  },Date.class);
  
  //使用自定义date 的转换器!!!
  BeanUtils.setProperty(p1, "birthday", birthday);
//  Date date=new Date();
//  System.out.println(date.toLocaleString());
  Date date=p1.getBirthday();  //英文时间格式
  String d=date.toLocaleString();//将转换中文格式!!
  System.out.println("英文格式:"+date+"中文格式:"+d);
 }
 @Test
 public void test3() throws IllegalAccessException, InvocationTargetException
 { 
  String name="aaaa";
  String password="123";
  String age="34";
  String birthday="1990-12-30";
  
  Person1 p1=new Person1();
  
  //仅支持8种基本数据类型转换!!
  BeanUtils.setProperty(p1, "name", name);
  BeanUtils.setProperty(p1, "password", password);
  BeanUtils.setProperty(p1, "age", age);
  
  //beanUtils自身 实现的转换器!! 当时空字符串时会抛异常!!
  //ConvertUtils.register(new DateLocaleConverter(), Date.class);
  
  System.out.println(p1.getName());
  System.out.println(p1.getPassword());
  System.out.println(p1.getAge());
  
  BeanUtils.setProperty(p1, "birthday", birthday);
//  Date date=new Date();
//  System.out.println(date.toLocaleString());
  Date date=p1.getBirthday();  //英文时间格式
  String d=date.toLocaleString();//将转换中文格式!!
  System.out.println("英文格式:"+date+"中文格式:"+d);
 }
 
 @Test
 public void test4() throws IllegalAccessException, InvocationTargetException
 { 
  //客户端以map形式提交数据
  Map map=new HashMap();
  map.put("name", "aaaa");
  map.put("password", "123");
  map.put("age", "23");
  map.put("birthday", "1990-12-30");
  
  ConvertUtils.register(new DateLocaleConverter(), Date.class);
  
  Person1 p1=new Person1();
  //用map集合填充bean的属性!!
  BeanUtils.populate(p1, map);
  
  System.out.println(p1.getName());
  System.out.println(p1.getPassword());
  System.out.println(p1.getAge());
  System.out.println(p1.getBirthday());
 }
 
}

这篇关于beanUtils操作总结的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单

《Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单》:本文主要介绍Springboot的ThreadPoolTaskScheduler线... 目录ThreadPoolTaskScheduler线程池实现15分钟不操作自动取消订单概要1,创建订单后

SpringBoot操作spark处理hdfs文件的操作方法

《SpringBoot操作spark处理hdfs文件的操作方法》本文介绍了如何使用SpringBoot操作Spark处理HDFS文件,包括导入依赖、配置Spark信息、编写Controller和Ser... 目录SpringBoot操作spark处理hdfs文件1、导入依赖2、配置spark信息3、cont

使用JavaScript操作本地存储

《使用JavaScript操作本地存储》这篇文章主要为大家详细介绍了JavaScript中操作本地存储的相关知识,文中的示例代码讲解详细,具有一定的借鉴价值,有需要的小伙伴可以参考一下... 目录本地存储:localStorage 和 sessionStorage基本使用方法1. localStorage

使用JavaScript将PDF页面中的标注扁平化的操作指南

《使用JavaScript将PDF页面中的标注扁平化的操作指南》扁平化(flatten)操作可以将标注作为矢量图形包含在PDF页面的内容中,使其不可编辑,DynamsoftDocumentViewer... 目录使用Dynamsoft Document Viewer打开一个PDF文件并启用标注添加功能扁平化

JavaScript DOM操作与事件处理方法

《JavaScriptDOM操作与事件处理方法》本文通过一系列代码片段,详细介绍了如何使用JavaScript进行DOM操作、事件处理、属性操作、内容操作、尺寸和位置获取,以及实现简单的动画效果,涵... 目录前言1. 类名操作代码片段代码解析2. 属性操作代码片段代码解析3. 内容操作代码片段代码解析4.

Android数据库Room的实际使用过程总结

《Android数据库Room的实际使用过程总结》这篇文章主要给大家介绍了关于Android数据库Room的实际使用过程,详细介绍了如何创建实体类、数据访问对象(DAO)和数据库抽象类,需要的朋友可以... 目录前言一、Room的基本使用1.项目配置2.创建实体类(Entity)3.创建数据访问对象(DAO

SpringBoot使用Apache POI库读取Excel文件的操作详解

《SpringBoot使用ApachePOI库读取Excel文件的操作详解》在日常开发中,我们经常需要处理Excel文件中的数据,无论是从数据库导入数据、处理数据报表,还是批量生成数据,都可能会遇到... 目录项目背景依赖导入读取Excel模板的实现代码实现代码解析ExcelDemoInfoDTO 数据传输

Python使用asyncio实现异步操作的示例

《Python使用asyncio实现异步操作的示例》本文主要介绍了Python使用asyncio实现异步操作的示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋... 目录1. 基础概念2. 实现异步 I/O 的步骤2.1 定义异步函数2.2 使用 await 等待异

Java向kettle8.0传递参数的方式总结

《Java向kettle8.0传递参数的方式总结》介绍了如何在Kettle中传递参数到转换和作业中,包括设置全局properties、使用TransMeta和JobMeta的parameterValu... 目录1.传递参数到转换中2.传递参数到作业中总结1.传递参数到转换中1.1. 通过设置Trans的

C# Task Cancellation使用总结

《C#TaskCancellation使用总结》本文主要介绍了在使用CancellationTokenSource取消任务时的行为,以及如何使用Task的ContinueWith方法来处理任务的延... 目录C# Task Cancellation总结1、调用cancellationTokenSource.