Java内省的使用(续)

     刚才说了Apache组织结合很多实际开发中的应用场景开发了一套简单、易用的API操作Bean的属性——BeanUtils,也给大家显出了代码的实现。十分简单,便捷。

     那么接下来就让我们来看看其中的几个框架,以及其中一些转换器的使用。

     Person类:

public class Person {
	private int age;
	private String name;
	private Date birth;
	public int getAge() {
		return age;
	}
	public void setAge(int age) {
		this.age = age;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public Date getBirth() {
		return birth;
	}
	public void setBirth(Date birth) {
		this.birth = birth;
	}
	public Person(){
		
	}
}

   测试类:

public class PersonTest {
	@Test
	public void test() throws Exception {
		// 得到class对象
		Class cls = Class.forName("www.csdn.net.beanutils.Person");
		// 实例化对象
		Person bean = (Person) cls.newInstance();

		/**
		 *  BeanUtils框架
		 */
		// 设置值
		BeanUtils.setProperty(bean, "age", "12");// 12本身是字符串,但是在这里就自动转换了(如果为12s,则输出的是0)
		// 读取值
		String s = BeanUtils.getProperty(bean, "age");
		System.out.println("获取利用BeanUtils框架setProperty()设置的值为:" + s);

		/** PropertyUtils框架
		 * 
		 */
		// 设置值
		PropertyUtils.setProperty(bean, "name", "Retror");
		// PropertyUtils框架
		// 读取值
		Object value = PropertyUtils.getProperty(bean, "name");
		System.out.println("获取利用PropertyUtils框架setProperty()设置的值为:" + value);

		// birth属性
		
		// 自定义的转换器
		ConvertUtils.register(new Converter() {

			public Object convert(Class arg0, Object arg1) {
				System.out.println(arg0 + "---" + arg1);
				//类型----字符串
				if (arg1 == null) {//判断值是否为空
					return null;
				} else {
					try {
						SimpleDateFormat sdf = new SimpleDateFormat(
								"yyyy年MM月dd日");
						return sdf.parse((String) arg1);
						//parse()方法,从给定字符串的开始解析文本,以生成一个日期。该方法不使用给定字符串的整个文本
					} catch (ParseException e) {
						e.printStackTrace();
					} catch (Exception e) {
						e.printStackTrace();
					}
					return null;
				}
			}
		}, Date.class);
		
		//采用内部的转换器完成的转换
		//ConvertUtils.register(new DateLocaleConverter(), Date.class);
		
		// 设置属性
		/**
		 * 自定义转换器实现
		 */
		//实现
		BeanUtils.setProperty(bean, "birth", "1992年10月10日");
		//BeanUtils.setProperty(bean, "birth", "1992-10-10");
		// 读取值
		String v = BeanUtils.getProperty(bean, "birth");
		System.out.println(v);
	}
}

 

     效果:


    这里,在测试类中通过两个框架(BeanUtils和PropertyUtils)来实现了设置值和读取值的操作,并且在其中利用自定义的转换器来实现日期的转换。希望大家能从中得到一些帮助。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值