教育路上
摘要:java日期类Date中方法的使用。以下是我们为大家整理的,相信大家阅读完后肯定有了自己的选择吧。
2021-06-22 09:42刘永莘
//CurrentDate.java import java.util.Date; class CurrentDate { public static void main(String args[]) { Date now = new Date();//创建日期对象 System.out.println("现在是:");//显示当前日期和时间 System.out.print((1900 + now.getYear())+"年");//取年 System.out.print(now.getMonth()+"月");//月 System.out.print(now.getDay()+"日");//日 System.out.print(now.getHours()+"时");// System.out.print(now.getMinutes()+"分"); System.out.println(now.getSeconds()+"秒"); System.out.println("现在是:"+now);//用toString()方法显示 long msec = now.getTime();//显示毫秒数,从January 1, 1970 GMT System.out.println("从Jan. 1, 1970 GMT到现在的毫秒数 = " + msec); } }
访客的评论 2024/10/04 06:34
文中描述的是准确的吗,如何报名!