在Android/Java 中尋找日期差異
在Android/Java 中,有多種方法可以計算兩個日期之間的差異用天來表達。一種方法涉及使用 Calendar 類別。
要取得目前日期,您可以使用以下程式碼:
TextView txtViewData; txtViewDate.setText("Today is " + android.text.format.DateFormat.getDateFormat(this).format(new Date()));
但是,由於您有另一個格式為 yyyy/mm/ 的日期dd,進行必要的轉換很重要。以下是範例:
Calendar thatDay = Calendar.getInstance(); thatDay.set(Calendar.DAY_OF_MONTH, 25); thatDay.set(Calendar.MONTH, 7); // 0-11 so 1 less thatDay.set(Calendar.YEAR, 1985); Calendar today = Calendar.getInstance(); long diff = today.getTimeInMillis() - thatDay.getTimeInMillis(); //result in millis
現在,要近似計算天數差異,您可以使用以下公式:
long days = diff / (24 * 60 * 60 * 1000);
從格式為yyyy/mm 的字串中解析日期/ dd,您可以使用以下程式碼:
String strThatDay = "1985/08/25"; SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd"); Date d = null; try { d = formatter.parse(strThatDay);//catch exception } catch (ParseException e) { // TODO Auto-generated catch block e.printStackTrace(); } Calendar thatDay = Calendar.getInstance(); thatDay.setTime(d); //rest is the same....
您也可以使用Integer.parseInt()對日期字串的子字串提取數值的方法。
請注意,此方法是一種近似方法,建議使用更可靠的函式庫(如 JodaTime)來進行精確的日期計算。
以上是如何使用 Android/Java 計算兩個日期之間的天數差異?的詳細內容。更多資訊請關注PHP中文網其他相關文章!