首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 企业软件 > 行业软件 >

spring定做属性编辑器

2013-08-04 
spring定制属性编辑器public class AddressEditor extends PropertyEditorSupport {public void setAsText

spring定制属性编辑器

public class AddressEditor extends PropertyEditorSupport {public void setAsText(String text) throws IllegalArgumentException {if (text != null && text.length() > 0) {String[] ss = text.split("\\.");if(ss.length>3) {Address a = new Address();a.setProvince(ss[0]);a.setCity(ss[1]);a.setStreet(ss[2]);a.setZipCode(ss[3]);setValue(a);} else {setValue(null);}} else {setValue(null);}}}

热点排行