欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java获取指定开始时间与结束时间之间的所有日期

程序员文章站 2023-11-12 21:02:58
本文实例为大家分享了java获取指定开始时间与结束时间之间的所有日期的具体代码,供大家参考,具体内容如下 import java.text.simpledatef...

本文实例为大家分享了java获取指定开始时间与结束时间之间的所有日期的具体代码,供大家参考,具体内容如下

import java.text.simpledateformat;
import java.util.calendar;
 
public class timertest {
 
 public static void main(string[] args) throws exception {
 string begindate = "2016-07-16";//开始时间
 string enddate = "2016-07-25";//结束时间
 
 simpledateformat sdf = new simpledateformat("yyyy-mm-dd");
 calendar cal = calendar.getinstance();
 cal.settime(sdf.parse(begindate));
 
 for (long d = cal.gettimeinmillis(); d <= sdf.parse(enddate).gettime(); d = get_d_plaus_1(cal)) {
 system.out.println(sdf.format(d));
 }
 
 }
 
 public static long get_d_plaus_1(calendar c) {
 c.set(calendar.day_of_month, c.get(calendar.day_of_month) + 1);
 return c.gettimeinmillis();
 }
}

运行结果:

java获取指定开始时间与结束时间之间的所有日期

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。