获取特殊日期的明天日期

时间:2018-10-25 08:14:38

标签: java android date

我有这个Java Date "Fri Oct 26 19:45:00 GMT+02:00 2018"。如何获得第二天的第二天?所以我需要这个:"Sa Oct 27 19:45:00 GMT+02:00 2018"。 如何实现呢?

1 个答案:

答案 0 :(得分:4)

long ms = yourDate.getTime();
Calendar c = Calendar.getInstance();
c.setTimeInMillis(ms);
c.add(Calendar.DATE, 1);
long nextDayInMillis = c.getTimeInMillis();
Date nextDate=new Date(nextDayInMillis);