在Java中取得時間都需要日期函數,以下就讓我們來看看如何使用。
首先使用日曆類,然後使用它的方法來取得目前月份
package test; import java.util.Calendar; public class Test { public static void main(String[] args) { Calendar cal=Calendar.getInstance();//使用日历类 int month=cal.get(Calendar.MONTH)+1;//得到月,因为从0开始的,所以要加1 System.out.println("当前月份:"+month); } }
結果:
当前月份:5
以上是java中怎麼獲得當前月的詳細內容。更多資訊請關注PHP中文網其他相關文章!