Java是一種廣泛用于開發各種應用的編程語言,其在日期和時間處理方面非常強大。對于我們每個人而言,了解當前的年月和日期是非常重要的。在Java中,我們可以使用以下代碼獲取當前的年月:
import java.time.LocalDate; public class Main { public static void main(String[] args) { LocalDate currentDate = LocalDate.now(); int year = currentDate.getYear(); int month = currentDate.getMonthValue(); System.out.println("當前年份為:" + year + ",當前月份為:" + month); } }
運行以上代碼將輸出如下結果:
當前年份為:2021,當前月份為:9
除了年月之外,獲取本月第幾周也是很常見的需求。我們可以使用以下代碼獲取這個信息:
import java.time.LocalDate; import java.time.temporal.TemporalField; import java.time.temporal.WeekFields; import java.util.Locale; public class Main { public static void main(String[] args) { LocalDate currentDate = LocalDate.now(); TemporalField weekOfYear = WeekFields.of(Locale.getDefault()).weekOfMonth(); int week = currentDate.get(weekOfYear); System.out.println("本月第" + week + "周"); } }
運行以上代碼將輸出如下結果:
本月第2周
以上就是Java中如何獲取當前年月和本月第幾周的介紹,希望對你有所幫助。
上一篇php 5.5.8