一: BeanUtils
1 克隆对象
Person a = BeanUtils.cloneBean(Personb);
2 Map 转 对象
BeanUtils.populate(person,map);
3 对象转Map
Map map = BeanUtils.describe(person)
4 对象转化
BeanUtils.copyProperties(Object dest, Object orig)
二:lang 包下
1 日期转换类:
DateFormatUtils
2 数字类工具类
NumberUtils(将字符串转换成BIGDECIMAL等)
3 字符串处理工具类
StringUtils