Java获取系统当前时间是一个比较常见的需求,Java提供了多种获取系统当前时间的方法,下面我们来简单介绍几种常用的方法。
System.currentTimeMillis()方法可以获取系统当前时间,以毫秒为单位,它的返回值是long类型的,比如:
long currentTimeMillis = System.currentTimeMillis();
Calendar.getInstance()方法可以获取一个Calendar对象,通过Calendar对象的getTime()方法可以获取当前时间,比如:
Calendar calendar = Calendar.getInstance(); Date currentTime = calendar.getTime();
Date.getTime()方法可以获取一个Date对象,通过getTime()方法可以获取当前时间,比如:
Date date = new Date(); long currentTime = date.getTime();
LocalDateTime.now()方法可以获取当前时间,比如:
LocalDateTime currentTime = LocalDateTime.now();
以上就是Java获取系统当前时间的几种方法,可以根据实际需求选择合适的方法来获取当前时间。
本文链接:http://task.lmcjl.com/news/6794.html