一、Java中的Date类
Java中提供了Date类,可以获取当前时间,包含年月日信息。下面是获取年月日的示例代码:
import java.util.Date; import java.text.SimpleDateFormat; public class DateTimeExample { public static void main(String[] args) { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); Date date = new Date(); String strDate = formatter.format(date); System.out.println(strDate); } }
这段代码中,我们首先导入了java.util.Date类和java.text.SimpleDateFormat类。其中,Date类用于获取当前时间,SimpleDateFormat类用于将时间格式化为指定格式的字符串。
在main方法中,我们首先定义了一个SimpleDateFormat对象,指定了日期格式为"yyyy-MM-dd"。然后调用Date类的构造方法获取当前时间,再用SimpleDateFormat类的format方法将时间转换成字符串。最后,使用System.out.println将字符串输出到控制台。
二、Java8中的LocalDate类
Java8引入了新的日期和时间API,其中也提供了获取当前年月日的方法。使用LocalDate类可以方便地获取当前日期,并将其格式化为指定格式的字符串。下面是示例代码:
import java.time.LocalDate; import java.time.format.DateTimeFormatter; public class DateTimeExample { public static void main(String[] args) { LocalDate date = LocalDate.now(); DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd"); String strDate = date.format(formatter); System.out.println(strDate); } }
这段代码中,我们首先导入了java.time.LocalDate类和java.time.format.DateTimeFormatter类。其中,LocalDate类用于获取当前日期,DateTimeFormatter类用于将日期格式化为指定格式的字符串。
在main方法中,我们首先调用LocalDate类的now方法获取当前日期。然后定义了一个DateTimeFormatter对象,指定日期格式为"yyyy-MM-dd"。最后,使用LocalDate类的format方法将日期格式化为字符串,并将其输出到控制台。
三、Java中的Calendar类
Java中还提供了Calendar类,可以用于获取当前时间的年月日等信息。下面是示例代码:
import java.util.Calendar; public class DateTimeExample { public static void main(String[] args) { Calendar calendar = Calendar.getInstance(); int year = calendar.get(Calendar.YEAR); int month = calendar.get(Calendar.MONTH) + 1; int day = calendar.get(Calendar.DAY_OF_MONTH); System.out.println(year + "-" + month + "-" + day); } }
这段代码中,我们首先导入了java.util.Calendar类。在main方法中,我们调用Calendar类的getInstance方法获取当前时间的Calendar实例。然后,分别调用Calendar类的get方法获取年、月、日的值,并将它们拼接成字符串输出到控制台。
四、总结
以上就是Java中获取当前年月日的三种方法。其中,Date类和Calendar类是旧的日期类,已被Java8中的新日期API取代。建议开发者使用Java8的日期和时间API,以获取更好的性能和更方便的使用。