本文介绍: 在Java语言中获取当前年份有几种方法:使用java.util包下的Calendar类,使用java.time包下的LocalDate类或者使用java.text包下的SimpleDateFormat类。
在Java语言中获取当前年份有几种方法:使用java.util包下的Calendar类,使用java.time包下的LocalDate类或者使用java.text包下的SimpleDateFormat类。
一、使用java.util.Calendar类获取当前年份
java.util类库中的Calendar类包含关于日期时间的信息,我们可以通过其提供的方法获取到当前的年份。
import java.util.Calendar; public class Main { public static void main(String[] args) { Calendar calendar = Calendar.getInstance(); int year = calendar.get(Calendar.YEAR); System.out.println("Current Year is : " + year); } }
在上述代码中,首先通过Calendar类的getInstance方法获取一个Calendar实例,然后调用其get方法并传入参数Calendar.YEAR来获取当前年份。
二、使用java.time.LocalDate类获取当前年份
在Java 8之后,java.time包被引入,其中的LocalDate类也可以用来获取当前年份。
import java.time.LocalDate; public class Main { public static void main(String[] args) { LocalDate localDate = LocalDate.now(); int year = localDate.getYear(); System.out.println("Current year is : " + year); } }
在这段代码中,首先通过LocalDate类的now方法获取一个LocalDate实例,然后调用其getYear方法来获取当前年份。
三、使用java.text.SimpleDateFormat类获取当前年份
java.text包中的SimpleDateFormat类可以用来获取日期的字符串表示形式,也可以用于解析这些字符串。通过使用合适的格式模式,我们也可以得到当前的年份。
import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static void main(String[] args) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy"); String year = sdf.format(new Date()); System.out.println("Current year is : " + year); } https://www.10zhan.com
在这段代码中,首先创建了一个SimpleDateFormat对象,然后使用它的format方法和当前的日期,得到一个表示当前年份的字符串。
原文地址:https://blog.csdn.net/linyichao123/article/details/132961341
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_6127.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。