当前位置: 代码迷 >> J2SE >> date怎么获取年月日
  详细解决方案

date怎么获取年月日

热度:151   发布时间:2016-04-24 12:13:16.0
date如何获取年月日
RT,请大牛指教

------解决方案--------------------
for example
Java code
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");Date d = sdf.parse("2011-10-20");Calendar c = Calendar.getInstance();c.setTime(d);int year = c.get(Calendar.YEAR);int month = c.get(Calendar.MONTH) + 1;int day = c.get(Calendar.DAY_OF_MONTH);System.out.printf("year=%04d, month=%02d, day=%02d\n", year, month, day);
  相关解决方案