timestamp 提取年、月。日

获取字符串格式日期的年月日:


String propValue = "2007-12-31";
SimpleDateFormat formatter = new SimpleDateFormat ("yyyy-MM-dd");
Date modifyDate = formatter.parse(propValue);
record.setDocYear(timestamp.getYear()+1900 );      结果为 2007
record.setDocMonth(modifyDate.getMonth()+1);  结果为  12
record.setDocDate(modifyDate.getDate());  结果为 31 

你可能感兴趣的:(JAVA)