Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: Java中两个日期之间的天数差异?
我想计算两天之间的天数并将所有这些日期存储在日期数组中。我怎样才能做到这一点。请帮我。
我建议您使用Calendar带有 A 的对象Date并开始添加一天,直到您到达DateB。每次添加一天时,都将修改后的日期存储在一个数组中。
Calendar
Date
也请看这里:Java 中两个日期之间的天数差异?
PS:如果您想要更完整的答案,您应该向我们展示一些代码和一些努力。