gpt4 book ai didi

java - 获取特殊日期的明天

转载 作者:行者123 更新时间:2023-12-01 17:48:12 25 4
gpt4 key购买 nike

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

最佳答案

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);

关于java - 获取特殊日期的明天,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52984460/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com