本文主要是介绍java 对象转换函数BeanUtils.copyProperties(),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
java 中,属性相近的两个对象可以使用BeanUtils.copyProperties()函数对对象进行转换。
下侧代码中LeagueForm是一个表单验证对象,需要将LeagueForm转换为League对象进行添加数据操作。
public League convert(LeagueForm leagueForm) throws Exception {League league = new League();BeanUtils.copyProperties(leagueForm, league);return league;}
这篇关于java 对象转换函数BeanUtils.copyProperties()的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!