2011-01-14 62 views
2

對於我的應用程序,我使用sunriseCalc-lib。 這個庫計算日出時間並返回一個像這樣的字符串12:20。 是否可以檢查當前時間是否晚於日出時間? 我有以下代碼:日出/檢查時間

 Location location = new Location("52.3496752", "4.6211921"); 
     DateFormat newDateFormat = new SimpleDateFormat("HH:mm"); 
     SunriseSunsetCalculator calculator = new SunriseSunsetCalculator(location, "Europe/Berlin"); 
     Calendar date = Calendar.getInstance(); 

     Date dawn = newDateFormat.parse(calculator.getOfficialSunriseForDate(date)); 
     Date dusk = newDateFormat.parse(calculator.getOfficialSunsetForDate(date)); 
+1

哎呀,日出@`12:20`! – Nishant 2011-01-14 20:21:13

回答

1

如果你有時間的對象已經只使用這些對象上before()after()方法。