获取系统时间

SimpleDateFormat formatter = new SimpleDateFormat ("yyyy年MM月dd日 HH:mm:ss");//hh12小时   
Date curDate = new Date(System.currentTimeMillis());//获取当前时间    HH24小时   
String str = formatter.format(curDate);

你可能感兴趣的:(系统时间)