1.通过Util包中的Date获取
Date date = new Date();
SimpleDateFormat dateFormat= new SimpleDateFormat("yyyy-MM-dd :hh:mm:ss");
((date));
2.通过Util包的Calendar 获取
Calendar calendar= ();
SimpleDateFormat dateFormat= new SimpleDateFormat("yyyy-MM-dd :hh:mm:ss");
((()));
3.通过Util包的Calendar 获取时间,分别获取年月日时分秒
Calendar cal=();
int y=();
int m=();
int d=();
int h=(Calendar.HOUR_OF_DAY);
int mi=();
int s=();
("现在时刻是"+y+"年"+m+"月"+d+"日"+h+"时"+mi+"分"+s+"秒");