获取安卓系统时间

时间:2021-02-19 22:43:17

第一种:

final Calendar c=Calendar.getInstance();

year=c.get(Calendar.YEAR);

month=c.get(Calendar.MONTH)+1;

day=c.get(Calendar.DAY_OF_MONTH);

hour=c.get(Calendar.HOUR_OF_DAY);

min=c.get(Calendar.MINUTE);

sec=c.get(Calendar.SECOND);


第二种:

SimpleDateFormat formatter=new SimpleDateFormat("yyy年MM月dd日    HH:mm:ss");

Date curDate=new Date(System.currentTimeMillis());

String tim=formatter.format(curDate);


我使用的第二种,因为直接设定了格式。

获取系统时间的方法还有别的方式,由于我没有用到,就不写了