Java获取系统当前时间年月日
2024-07-31
99
在Java中使用java.util.Date类和java.time.LocalDate类来获取系统当前的时间,年份,月份和日期。
一、使用java.util.Date类获得当前日期
java.util.Date类表示特定的瞬间,精确到毫秒。下面是获取当前日期和时间的代码示例:
import java.util.Date; public class GetCurrentDateTime { public static void main(String[] args) { // create a date object with the current date and time. Date date = new Date(); // print the date System.out.println("当前日期和时间: " + date.toString()); } }
二、使用java.time.LocalDate获取当前年月日
使用Java 8引入的java.time包中的LocalDate类,可以很方便地获取当前日期的年份,月份和日子。以下是操作的具体代码:
import java.time.LocalDate; public class GetCurrentDate { public static void main(String[] args) { // get the current date LocalDate currentDate = LocalDate.now(); // get the year int year = currentDate.getYear(); // get the month int month = currentDate.getMonthValue(); // get the day int day = currentDate.getDayOfMonth(); // print the current date System.out.println("当前年份: " + year); System.out.println("当前月份: " + month); System.out.println("当前日期: " + day); } }
三、使用java.text.SimpleDateFormat格式化日期
java.text.SimpleDateFormat是一个可以以用户定义的模式格式化 Date 对象的具体类。
import java.text.SimpleDateFormat; import java.util.Date; public class FormatCurrentDateTime { public static void main(String[] args) { // create a date object with the current date and time. Date now = new Date(); // create an instance of SimpleDateFormat SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss"); // format the date String currentDateAndTime = formatter.format(now); // print the date and time System.out.println("当前年月日和时间: " + currentDateAndTime); } }更新于:5个月前
赞一波!3
相关文章
- 【说站】js isBetween时间点的判断
- 【说站】mysql中系统变量的两种类型
- 【说站】java类加载器的分类
- 【说站】java类的两种引用方法
- 【说站】java转义字符
- 【说站】java基本数据类型
- 【说站】java动态和静态语言的比较
- 【说站】java中Class类的概念介绍
- 【说站】java多态的向上转型是什么
- 【说站】java向下转型是什么意思
- 【说站】java重写发生的条件
- 【说站】java动态绑定怎么用
- 【说站】java多态的好处
- 【说站】java对象池的使用步骤
- 【说站】java向上转型发生的时机
- 【说站】java中变量的使用注意
- 【说站】java类加载的过程
- 【说站】java反射如何调用指定的属性
- 【说站】java RMI的工作过程
- 【说站】java反射机制提供哪些功能
文章评论
评论问答