读书人

spring定做属性编辑器

发布时间: 2013-08-04 18:26:16 作者: rapoo

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);}}}

读书人网 >行业软件

热点推荐