位置:首頁 > Java技術 > java實例教學 > Java滾動時間與月份

Java滾動時間與月份

如何通過時間與月份滾動?

解決方法

這個例子顯示如何通過使用Calendar類的roll() 方法monrhs (不改變年)或hrs(在不改變月或年)。

import java.util.*;

public class Main {
   public static void main(String[] args) throws Exception {
      Date d1 = new Date();
      Calendar cl = Calendar. getInstance();
      cl.setTime(d1);
      System.out.println("today is "+ d1.toString());
      cl. roll(Calendar.MONTH, 100);
      System.out.println("date after a month will be " 
	  + cl.getTime().toString() );
      cl. roll(Calendar.HOUR, 70);
      System.out.println("date after 7 hrs will be "
      + cl.getTime().toString() );
   }
}

結果

上麵的代碼示例將產生以下結果。

today is Mon Jun 22 02:44:36 IST 2009
date after a month will be Thu Oct 22 02:44:36 IST 2009
date after 7 hrs will be Thu Oct 22 00:44:36 IST 2009