Commons Beanutils是Apache开源组织提供的用于操作JAVA BEAN的工具包。使用commons beanutils,我们可以很方便的对bean对象的属性进行操作。今天为大家介绍一下该包的常用方法。
1.什么是BeanUtils
程序中对javabean的操作很频繁, 所以apache提供了一套开源的api,方便对javabean的操作,即BeanUtils组件。
2.BeanUtils的作用
简化javabean的操作。
在一般的写bean组件的时候,都必须要写setter和getter方法,当然假如我们事先已经知道bean的相关属性和方法,写bean是比较简单的。
3.BeanUtils依赖包
用户可以从www.apache.org下载BeanUtils组件,然后再在项目中引入jar文件。
(1) BeanUtils相关包
commons-beanutils-1.8.3.jar
commons-beanutils-1.8.3-javadoc.jar
commons-beanutils-1.8.3-javadoc.jar
commons-beanutils-bean-collections-1.8.3.jar
commons-beanutils-core-1.8.3.jar
(2) Logic4j相关包
commons-logging.jar
log4j.jar
注:如果缺少日志jar文件,报错:
1
2
3
4
5
|
java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
at org.apache.commons.beanutils.ConvertUtilsBean.(ConvertUtilsBean.java: 157 )
at org.apache.commons.beanutils.BeanUtilsBean.(BeanUtilsBean.java: 117 )
at org.apache.commons.beanutils.BeanUtilsBean$ 1 .initialValue(BeanUtilsBean.java: 68 )
at
|
二:实例—基本用法
用法1: 对象属性的拷贝
1
2
|
BeanUtils.copyProperty(admin, "userName" , "jack" );
BeanUtils.setProperty(admin, "age" , 18 );
|
用法2:对象的拷贝
1
|
BeanUtils.copyProperties(newAdmin, admin);
|
用法3: map数据拷贝到javabean中
注意:map中的key要与javabean的属性名称一致
1
|
BeanUtils.populate(adminMap, map);
|
代码举例
javabean类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
package com.beanutils.test;
import java.util.Date;
/**
* 1. bean类设计
* @author Charlie.chen
*
*/
public class Admin {
private int id;
private String userName;
private String pwd;
private int age;
private Date birth;
public Date getBirth() {
return birth;
}
public void setBirth(Date birth) {
this .birth = birth;
}
public int getAge() {
return age;
}
public void setAge( int age) {
this .age = age;
}
public String getPwd() {
return pwd;
}
public void setPwd(String pwd) {
this .pwd = pwd;
}
public int getId() {
return id;
}
public void setId( int id) {
this .id = id;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this .userName = userName;
}
@Override
public String toString() {
return "Admin [age=" + age + ", birth=" + birth + ", id=" + id
+ ", pwd=" + pwd + ", userName=" + userName + "]" ;
}
}
|
通过BeanUtils对javabean的基本操作
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
@Test
public void test1() throws Exception {
// a. 基本操作
Admin admin = new Admin();
//admin.setUserName("Charlie.chen");
//admin.setPwd("999");
// b. BeanUtils组件实现对象属性的拷贝
BeanUtils.copyProperty(admin, "userName" , "jack" );
BeanUtils.setProperty(admin, "age" , 18 );
// 总结1: 对于基本数据类型,会自动进行类型转换!
// c. 对象的拷贝
Admin newAdmin = new Admin();
BeanUtils.copyProperties(newAdmin, admin);
// d. map数据,拷贝到对象中
Admin adminMap = new Admin();
Map<String,Object> map = new HashMap<String,Object>();
map.put( "userName" , "Jerry" );
map.put( "age" , 29 );
// 注意:map中的key要与javabean的属性名称一致
BeanUtils.populate(adminMap, map);
// 测试
System.out.println(adminMap.getUserName());
System.out.println(adminMap.getAge());
}
|
三:实例—日期类型的拷贝
需要注册日期类型转换器,2种方式参见下面代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
//1.自定义日期类型转换器
@Test
public void test2() throws Exception {
// 模拟表单数据
String name = "jack" ;
String age = "20" ;
String birth = " " ;
// 对象
Admin admin = new Admin();
// 注册日期类型转换器:1, 自定义的方式
ConvertUtils.register( new Converter() {
// 转换的内部实现方法,需要重写
@Override
public Object convert(Class type, Object value) {
// 判断
if (type != Date. class ) {
return null ;
}
if (value == null || "" .equals(value.toString().trim())) {
return null ;
}
try {
// 字符串转换为日期
SimpleDateFormat sdf = new SimpleDateFormat( "yyyy-MM-dd" );
return sdf.parse(value.toString());
} catch (ParseException e) {
throw new RuntimeException(e);
}
}
},Date. class );
// 把表单提交的数据,封装到对象中
BeanUtils.copyProperty(admin, "userName" , name);
BeanUtils.copyProperty(admin, "age" , age);
BeanUtils.copyProperty(admin, "birth" , birth);
//------ 测试------
System.out.println(admin);
}
//2. 使用提供的日期类型转换器工具类
@Test
public void test3() throws Exception {
// 模拟表单数据
String name = "jack" ;
String age = "20" ;
String birth = null ;
// 对象
Admin admin = new Admin();
// 注册日期类型转换器:2, 使用组件提供的转换器工具类
ConvertUtils.register( new DateLocaleConverter(), Date. class );
// 把表单提交的数据,封装到对象中
BeanUtils.copyProperty(admin, "userName" , name);
BeanUtils.copyProperty(admin, "age" , age);
BeanUtils.copyProperty(admin, "birth" , birth);
//------ 测试------
System.out.println(admin);
}
|
总结
以上所述是小编给大家介绍的Commons BeanUtils组件的相关内容,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:http://blog.csdn.net/tobetheender/article/details/52830814