1.Calendar cal=Calendar.getInstance();//使用日历类

String year=formatter.format(cal.get(Calendar.YEAR));//得到年

String month=formatter.format(cal.get(Calendar.MONTH)+1);//得到月,因为从0开始的,所以要加1

String day=formatter.format(cal.get(Calendar.DAY_OF_MONTH));//得到天
String hour=formatter.format(cal.get(Calendar.HOUR));//得到小时
String minute=formatter.format(cal.get(Calendar.MINUTE));//得到分钟
String second=formatter.format(cal.get(Calendar.SECOND));//得到秒

2.字符串转日期

Date abc = new SimpleDateFormat("yyyy-MM-dd").parse("2014-05-01");

待续