Bootstrap

获取当前年份和时间戳

SimpleDateFormat sdf = new SimpleDateFormat("yyyy");//设置日期格式
Date date = new Date();
System.out.println("当前年份:"+sdf.format(date));

 // 用Long或者String接收时间戳,因为int长度不够
System.out.println("当前时间戳:"+System.currentTimeMillis());
;