在java开发中经常使用到时间,无论是和数据库交互时,还是在窗体显示时都会用到.在最近的一次Java开发中使用时间追加操作时候可是走了不少弯路. 因此总结一些简单的时间使用,具体如下:
显示当前时间的毫秒数
public static void main(String args[]){
Date date = new Date();
// 使用 toString() 函数显示日期时间
System.out.println(date.toString());
System.out.println("-------------------");
long h=date.getTime();//返回自 1970 年 1 月 1 日 00:00:00 GMT 到现在表示的毫秒数。
System.out.println(h);//返回数字代表1970年1月1日到当前时间的毫秒数
Calendar类是一个抽象类,在实际使用时实现特定的子类的对象,创建对象的过程对程序员来说是透明的,只需要使用getInstance方法创建即可。 以下是获取当前时间的年,月,日.
Calendar cal=Calendar.getInstance();
System.out.println(cal.get(Calendar.YEAR));//年
System.out.println("-------------------");
System.out.println(cal.get(Calendar.MONTH)+1);//月
System.out.println("-------------------");
System.out.println(cal.get(Calendar.DATE) );//日
System.out.println("-------------------");
System.out.println(cal.get(Calendar.HOUR_OF_DAY) );//时
System.out.println("-------------------");
System.out.println(cal.get(Calendar.MINUTE) );//分
System.out.println("-------------------");
System.out.println(cal.get(Calendar.SECOND) );//秒
}
下面是进行时间追加,同样使用到Calendar中的Add方法:
Date d1 = new Date();
Calendar cl = Calendar.getInstance();
cl.setTime(d1);
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String DateToStr = format.format(d1);
System.out.println("当前时间 : " + DateToStr);
cl.setTime(d1);
cl.add(Calendar.MONTH, 1);
SimpleDateFormat format2 = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String DateToStr2 = format2.format(cl.getTime());
System.out.println("加上一个月后的时间为: " + DateToStr2);