A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 中关村阿旺 中级黑马   /  2013-11-11 18:28  /  2312 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 中关村阿旺 于 2013-11-12 02:03 编辑
  1. package cn.itcast.fang.beanutils;

  2. import java.lang.reflect.InvocationTargetException;
  3. import java.sql.Date;
  4. import java.text.ParseException;
  5. import java.text.SimpleDateFormat;

  6. import org.apache.commons.beanutils.BeanUtils;
  7. import org.apache.commons.beanutils.ConversionException;
  8. import org.apache.commons.beanutils.ConvertUtils;
  9. import org.apache.commons.beanutils.Converter;
  10. import org.apache.commons.beanutils.locale.converters.DateLocaleConverter;
  11. import org.junit.Test;

  12. //Sun公司的内省API过于繁琐,所以Apache组织结合很多实际开发中的应用场景
  13. //开发了一套简单、易用的API操作Bean的属性——BeanUtils,
  14. //在Beanutil中可以直接进行类型的自动转换。
  15. //使用beanUtils操作bean的属性(首先导入jar包,第三方开发工具包)
  16. public class Demo {

  17.         @Test
  18.         public void test1() throws Exception{
  19.                 //BeanUtils可以填充JavaBeans属性通过反射实用方法。
  20.                
  21.                 Person p=new Person();
  22.                 //void org.apache.commons.beanutils.BeanUtils
  23.                 //.setProperty(Object bean, String name, Object value)
  24.                 //throws IllegalAccessException, InvocationTargetException
  25.                 //设置指定的属性值,进行类型转换为所需的符合目标的属性类型。
  26.                 BeanUtils.setProperty(p, "name", "zhangsan");
  27.                 System.out.println(p.getName());
  28.         }
  29.         
  30.         @Test
  31.         public void test2() throws IllegalAccessException, InvocationTargetException{
  32.                 //例如:接收用户浏览器传递过来的姓名、年龄、性别等信息
  33.                 //由于是表单提交,所以都是字符串
  34.                 String name="lisi";
  35.                 String age="67";
  36.                 String sex="男";
  37.                 String birthday="1989-09-16";
  38.                
  39.                 //为了让日期赋到bean的birthday属性上,我们给BeanUtils注册一个日期转换器
  40.                 //ConvertUtils类转换为字符串的标量值来指定类的对象的实用方法,字符串数组来指定类的数组。
  41.                
  42.                 //static void register(Converter converter, Class clazz)
  43.                 //注册为指定目标类的自定义转换器,取代任何以前注册的转换器。
  44.                 ConvertUtils.register(new Converter(){
  45.                         //Object convert(Class type, Object value)
  46.                         //将指定的输入对象转换为指定类型的输出对象。
  47.                         @Override
  48.                         public Object convert(Class type, Object value) {
  49.                                 if(value == null){
  50.                                         return null;
  51.                                 }
  52.                                 if(!(value instanceof String)){
  53.                                         throw new ConversionException("只支持String类型的转换!");
  54.                                 }
  55.                                 String str=(String)value;
  56.                                 if(str.trim().equals("")){
  57.                                         return null;
  58.                                 }
  59.                                 //SimpleDateFormat(String pattern)
  60.                         //用给定的模式和默认语言环境的日期格式符号构造 SimpleDateFormat。
  61.                                 SimpleDateFormat sdf=new  SimpleDateFormat("yyyy-MM-dd");
  62.                                 //Date parse(String source)
  63.                         //从给定字符串的开始解析文本,以生成一个日期。
  64.                                 try {
  65.                                         //此方法会抛出异常,因为是匿名内部类实现接口,所以不能抛只能处理
  66.                                         return sdf.parse(str);
  67.                                 } catch (ParseException e) {
  68.                                         //如果发生此类异常,那么就让程序停止,
  69.                                         //必须加上参数e,因为异常链不能断,要让调用者看到异常信息
  70.                                         throw new RuntimeException(e);
  71.                                 }
  72.                         }
  73.                 }, Date.class);

  74.                 Person p=new Person();
  75.                 BeanUtils.setProperty(p, "name", name);
  76.                 //p对象的age属性应该接收int类型的数据,但是使用BeanUtils可以自动帮我们完成转换动作
  77.                 //只支持8种基本数据类型的转换
  78.                 BeanUtils.setProperty(p, "age", age);
  79.                 BeanUtils.setProperty(p, "sex", sex);
  80.                 BeanUtils.setProperty(p, "birthday", birthday);
  81.                
  82.                 System.out.println(p.getName());
  83.                 System.out.println(p.getAge());
  84.                 System.out.println(p.getSex());
  85.                 System.out.println(p.getBirthday());
  86.         }
  87.         
  88.         @Test
  89.         public void test3() throws IllegalAccessException, InvocationTargetException{
  90.                 //例如:接收用户浏览器传递过来的姓名、年龄、性别等信息
  91.                 //由于是表单提交,所以都是字符串
  92.                 String name="lisi";
  93.                 String age="67";
  94.                 String sex="男";
  95.                 String birthday="1989-09-16";
  96.                
  97.                 ConvertUtils.register(new DateLocaleConverter(), Date.class);

  98.                 Person p=new Person();
  99.                 BeanUtils.setProperty(p, "name", name);
  100.                 //p对象的age属性应该接收int类型的数据,但是使用BeanUtils可以自动帮我们完成转换动作
  101.                 //只支持8种基本数据类型的转换
  102.                 BeanUtils.setProperty(p, "age", age);
  103.                 BeanUtils.setProperty(p, "sex", sex);
  104.                 BeanUtils.setProperty(p, "birthday", birthday);
  105.                
  106.                 System.out.println(p.getName());
  107.                 System.out.println(p.getAge());
  108.                 System.out.println(p.getSex());
  109.                 System.out.println(p.getBirthday());
  110.         }
  111. }
复制代码
两个jar包我都导入了。test1()方法测试OK。
我用JUnit测试的,test2()方法和test3()方法都报错:
2013-11-11 18:26:21 org.apache.commons.beanutils.converters.DateConverter toDate
警告:     DateConverter does not support default String to 'Date' conversion.
2013-11-11 18:26:21 org.apache.commons.beanutils.converters.DateConverter toDate
警告:     (N.B. Re-configure Converter or use alternative implementation)
不知道什么原因,哪位高手指教一下……

评分

参与人数 1技术分 +1 收起 理由
杨增坤 + 1

查看全部评分

1 个回复

倒序浏览
这代码有点长。哈哈
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马