//function1:2013年04月12日 09:31:47
SimpleDateFormat formatter = new SimpleDateFormat ("yyyy年MM月dd日 HH:mm:ss ");
Date curDate = new Date(System.currentTimeMillis());//获取当前时间
String str = formatter.format(curDate);
System.out.println(str);
//function2:2013-04-12 09:31:47
SimpleDateFormat sDateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String date = sDateFormat.format(new java.util.Date());
System.out.println(date);
//function3:2013-04
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM");
String date2=sdf.format(new java.util.Date());
System.out.println(date2);
//function4: 2013年4月12日 星期五 上午09时31分47秒 CST
DateFormat df=DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL,Locale.CHINA);
System.out.println(df.format(new Date()));
result:
2013年04月21日 00:12:05
2013-04-21 12:12:05
2013-04
2013年4月21日 星期日 上午12时12分05秒 CST