在给一个Date属性中赋指定日期的值,可以按以下方式进行:

Account account = new Account();
         SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
         ParsePosition pos = new ParsePosition(0);
         Date birthday = formatter.parse("1987-12-18", pos);
         account.setBirthday(birthday);

 

**************只要学不死就往死里学!************