Date 的 getHours() 和 getMinutes() 还有 getSeconds() 都是过时的方法,所以要用 Calendar 类

java.util.Date 的 getHours() 和 getMinutes() 还有 getSeconds() 都是过时(deprecated )的方法,

所以要用 Calendar 类

 

例如:

Calendar cal = Calendar.getInstence();   

int hours = cal.get( Calendar.HOUR_OF_DAY );
int minute = cal.get( Calendar.MINUTE );
int second = cal.get( Calendar.SECOND );

Calendar 类有一个 setTime( Date date ) 方法,可以把 calendar 对象改为别的时间

--------------------------

Calendar calendar = Calendar.getInstance();

String dateStr = calendar.get(Calendar.YEAR)
+ "/" + (calendar.get(Calendar.MONTH) + 1) + "/" + calendar.get(Calendar.DATE);

 

你可能感兴趣的:(java)