当前位置:   article > 正文

Java获取年月日_java date系统时间只取年月日

java date系统时间只取年月日
public class TestMain {
	
	public static void main(String[] args) {
	    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		// 1、普通的时间转换
		String string = new SimpleDateFormat("yyyy-MM-dd").format(new Date()).toString();
		System.out.println(string);
		System.out.println("-------------------------------");
		// 2、日历类的时间操作
		Calendar calendar = Calendar.getInstance();
		System.out.println(calendar.get(Calendar.YEAR));
		System.out.println(calendar.get(Calendar.MONTH) + 1);
		System.out.println(calendar.get(Calendar.DATE));
		System.out.println("当前时间: " + dateFormat.format(calendar.getTime()));
		// 获取当前时间前3秒
		calendar.add(Calendar.SECOND, -3);// 3秒之前的时间
		System.out.println("当前时间3秒之前: " + dateFormat.format(calendar.getTime()));
		// 获取当前时间前3分钟
		calendar.add(Calendar.MINUTE, -3);// 3分钟之前的时间
		System.out.println("当前时间3分钟之前: " + dateFormat.format(calendar.getTime()));

	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

输出:

2022-02-11
-------------------------------
2022
2
11
当前时间: 2022-02-11 11:05:28
当前时间3秒之前: 2022-02-11 11:05:25
当前时间3分钟之前: 2022-02-11 11:02:25
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/631305
推荐阅读
相关标签
  

闽ICP备14008679号