查找日期差异:Android/Java 方法
您有格式为 mm/dd/yyyy 的当前日期和另一个日期格式为年/月/日。要计算这些日期之间的天数差异,请考虑以下步骤:
// Calculate the difference in milliseconds long diff = today.getTimeInMillis() - thatDay.getTimeInMillis(); // Convert the difference to days long days = diff / (24 * 60 * 60 * 1000);
从字符串中解析日期
从字符串 " 中解析日期yyyy/mm/dd" 到 Calendar 对象中,您可以使用 SimpleDateFormat class:
SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd"); Date d = null; try { d = formatter.parse(strThatDay); // catch exception } catch (ParseException e) { e.printStackTrace(); } Calendar thatDay = Calendar.getInstance(); thatDay.setTime(d);
替代方法
既然你知道日期格式,你也可以在其子字符串上使用 Integer.parseInt() 来获取它们的数值和直接进行计算。
以上是如何在 Android/Java 中计算日期差(以天为单位)?的详细内容。更多信息请关注PHP中文网其他相关文章!