Date
Date date = new Date();System.out.println(date);//Tue Feb 27 10:00:58 CST 2024System.out.println(date.toString());//Tue Feb 27 10:01:42 CST 2024System.out.println(date.getTime());//1669617690850//规范化SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒");System.out.println(simpleDateFormat.format(date));//2022年11月28日 14时41分30秒//String -> Date (String必须符合simpleDateFormat的格式)System.out.println(simpleDateFormat.parse("1111年11月11日 11时11分11秒").toString());
Calendar
参考笔记:https://blog.csdn.net/cnds123321/article/details/119335948
Calendar calendar = Calendar.getInstance();//多态的形式//public int get(int field)根据给的日历字段返回对应的值int year = calendar.get(Calendar.YEAR);//YEAR是Caleader类中的日历字段,都是用static修饰的,用类名直接调用字段int month = calendar.get(Calendar.MONTH) + 1;//因为月在这里默认从0开始的,所以要得到正确的月需要加1int date = calendar.get(Calendar.DATE);System.out.println(year + "年" + month + "月" + date + "日");
Timer & TimerTask
普通方式
//时间格式SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd HH-mm-ss");Timer timer=new Timer();TimerTask timerTask=new TimerTask() {@Overridepublic void run() {try {System.out.println(new Date());Thread.sleep(2000);System.out.println(simpleDateFormat.format(new Date()));} catch (InterruptedException e) {throw new RuntimeException(e);}}};//延迟2000,间隔1000执行timer.schedule(timerTask,2000,1000);
匿名内部类方式
//时间格式SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd HH-mm-ss");Timer timer=new Timer();timer.schedule(new TimerTask() {@Overridepublic void run() {System.out.println(simpleDateFormat.format(new Date()));}},2000,1000);/延迟2000,间隔1000循环