我有一个要求,比如计算两个日期之间的剩余天数。它对我来说很好。但问题是当我将构建发送到英国时,与印度相比,它显示的时间少了一天(例如:印度:215 天,但在英国:214 天)。我正在使用以下代码:
public static int noOfDays(String currDate, String tarDate){
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
Date date1 = null;
Date date2 = null;
try {
date1 = sdf.parse(currDate);
date2 = sdf.parse(tarDate);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return (int)( (date2.getTime() - date1.getTime()) / (1000 * 60 * 60 * 24));
}
获取当前日期:
public static String getcurrentdate()
{
Calendar now = Calendar.getInstance();
int month = now.get(Calendar.MONTH) + 1;
int year = now.get(Calendar.YEAR);
int day = now.get(Calendar.DATE);
return day+"/"+month+"/"+year;
}
我相信现在 Calendar = Calendar.getInstance(); 将只给出本地时区实例。如果它是正确的,那么它应该在任何位置给出相同的结果。但结果似乎不同。请帮我解决这个问题。
谢谢, 加内什