java中获取当前时间的方法_java获取date的年月日

java中获取当前时间的方法_java获取date的年月日,第1张

java中获取当前时间的方法_java获取date的年月日 前言上一周在做一个产品的需求的时候有个动态计算时间段(如现在是13:00,则时间段为15:10-17:10、17:10-19:10、19:10-21:10;即最早的出发时间为当前时间+参数【2h10min】,最迟的时间段为开始时间在20点前结束时间在20点后的时间段),期间大量使用到了日期时间类库,本着熟悉日期时间类库才有了这篇文章,文章最后我会把我如何实现的这个需求的一个算法贴出来。

一、JDK8以前版本中的时间类库1.1 原始时间类库存在的缺陷与不足我们在使用Java8之前的类库时,都会在处理日期-时间的时候总是不爽,这其中包括且不限于以下的槽点:在Java 1.0版本中,对时间、日期的 *** 作完全依赖于 java.util.Data 类,只能以毫秒的精度表示时间,无法表示日期。

在易用性方面有着很大的缺陷,年份的起始时间选择是1900年,月份是从0开始。

toString 方法返回值不直观,带有时区。

在Java1.1 版本中,废弃了很多Date 类中的很多方法,并且新增了 java.util.Calendar。

但是与Date相同,Calendar 类也有类似的问题和设计缺陷,导致在使用这些类写出的代码也很容易出错。

月份依然是从0开始计算。

常用的日期、时间 *** 作需要同时使用Date、Canendar、SimpleDateFormat,比较繁琐。

部分特性只存在于某一个类(解析和格式化日期或时间的DateFormat方法只存在于Date类中)。

DateFormat 不是线程安全的,如果两个线程尝试使用同一个formatter 解析日期,可能会得到无法预期的结果。

Date 和 Canendar 都是可变的。

1.2 关于SimpleDateFormat 线程不安全的原因由于 parse 方法使用的贡献变量 calendar 不是线程安全的。

在 format (subFormat) 方法中进行了 calendar 的赋值,在 parse 进行了值得处理,因此在并发的情况下会造成 calendar 清理不及时,值被覆盖的情况。

/***The{@linkCalendar}instanceusedforcalculatingthedate-timefields*andtheinstantoftime.Thisfieldisusedforbothformattingand*parsing.**<p>Subclassesshouldinitializethisfieldtoa{@linkCalendar}*appropriateforthe{@linkLocale}associatedwiththis*<code>DateFormat</code>.*@serial*/protectedCalendarcalendar;@OverridepublicStringBufferformat(Datedate,StringBuffertoAppendTo,FieldPositionpos){pos.beginIndex=pos.endIndex=0;returnformat(date,toAppendTo,pos.getFieldDelegate());}//CalledfromFormataftercreatingaFieldDelegateprivateStringBufferformat(Datedate,StringBuffertoAppendTo,FieldDelegatedelegate){//Convertinputdatetotimefieldlistcalendar.setTime(date);//AtthispointthefieldsofCalendarhavebeenset.Calendar//willfillindefaultvaluesformissingfieldswhenthetime//iscomputed.pos.index=start;DateparsedDate;try{parsedDate=calb.establish(calendar).getTime();//Iftheyearvalueisambiguous,//thenthetwo-digityear==thedefaultstartyearif(ambiguousYear[0]){if(parsedDate.before(defaultCenturyStart)){parsedDate=calb.addYear(100).establish(calendar).getTime();}}}}1.3 如何解决上述线程不安全问题?使用ThreadLocal 为每个线程都创建一个线程独享 SimpleDateFormat 变量;需要的时候创建局部变量;使用 org.apacle.commons.lang3.time.DateFormatUtils使用Joda-Time (后面介绍)二、Joda-Time 日期时间类库2.1 简介Joda-Time 是Joda提供的一个遵循Apache2.0 开源协议的 JDK以外的优质日期和时间开发库。

Joda除Joda-Time之外的项目有Joda-Money、Joda-Beans、Joda-Convert、Joda-Collect Joda官网2.1.1 为什么使用Joda-Time使用方便:Calendar 访问“正常的”日期困难,并且缺乏简单的防腐,Joda-Time 拥有简单的字段访问,比如获得年的 getYear() 和 获得星期 中的天 getDayOfWeek() 。

易于扩展:JDK支持通过使用子类实现多个日历系统,但是这是非常笨重的,并且在实现中很难选出另一个日历系统。

Joda-Time 支持基于 Chronology 类实现多个可插拔的日历系统。

功能全面:Joda-Time 提供了所有的日期和时间计算的必须功能,它提供了即装即用的特性。

最新的时区计算:时区的实现基于公共时区信息数据库,每年更新数次。

新版本的Joda-Time 包括了这个数据库的所有更改,应尽早进行必要的更新,手动更新区域数据很容易。

日历支持:提供了8种日历系统。

互通性:内部使用毫秒进行标识,这与JDK或者其他公共的时间表示相一致。

性能良好:支持针对所有访问的域进行最小的计算。

良好的测试覆盖率:有全方位的测试人员保证库的质量、具有完整文档:有一个完整的用户指南,该指南提供了一个概述,涵盖常见的使用场景。

javadoc 非常详细,涵盖API的其余部分。

发展:自2002年以来积极发展,是一个成熟的可靠的代码库,一些相关的项目目前也是可用的。

开源:遵循Apache 2.0开源协议发布。

2.1.2 Joda-Time 的关键优点LocalDate:只包含日期LocalTime:只包含时间Instant:时间轴上的时间点DateTime:时区中完整的日期和时间DateTimeZone:更好的时区Duration和Period:持续时间Interval:两个时间点之间的时间全面并且灵活的时间格式化与转换正因为Joda-Time 与 Java8 之前的时间类库相比,具备了如此多的优点,所以 Joda-Time 成为事实上的标准的Java日期和时间库。

2.2 特性解读2.2.1 Joda-Time和JDK的互 *** 作性互 *** 作性是指:Joda 类能够生成 java.util.Date 的实例(以及Calendar),这可以让我们保留现有对JDK的依赖,又能够使用Joda处理复杂的日期/时间计算。

Date To Joda-TimeDatedate=newDate();DateTimedateTime=newDateTime(date);Canendar To Joda-TimeCalendarcalendar=Calendar.getInstance();DateTimedateTime=newDateTime(calendar);Joda-Time To DateDatedate=newDate();DateTimedateTime=newDateTime(date);Datedate2=dateTime.toDate();Joda-Time To CalendarCalendarcalendar=Calendar.getInstance();dateTime=newDateTime(calendar);Calendarcalendar2=dateTime.toCalendar(Locale.CHINA);2.2.2 Joda的关键日期/时间概念理解Joda 使用了以下概念,使得它们可以应用到任何日期/时间库:不可变性(Immutability)Joda-Time与java.lang.String类似,它们的实例均无法修改(因为任意对其值改变的 *** 作都会生成新的对象),这也代表了它们是线程安全的。

瞬时性(Instant)如接口 org.joda.time.ReadableInstant 中所表示的那样,Instant 表示的是一个精确的时间点,是从 epoch:1970-01-01T00:00:00Z 开始计算的毫秒数,这也的设计也使得其子类都可以与JDK Date 以及 Calendar 类兼容。

/***Definesaninstantinthedatetimecontinuum.*Thisinterfaceexpressesthedatetimeasmillisecondsfrom1970-01-01T00:00:00Z.*<p>*Theimplementationofthisinterfacemaybemutableorimmutable.*Thisinterfaceonlygivesaccesstoretrievedata,nevertochangeit.*<p>*Methodsinyourapplicationshouldbedefinedusing<code>ReadableInstant</code>*asaparameterifthemethodonlywantstoreadtheinstantwithoutneedingtoknow*thespecificdatetimefields.*<p>*The{@codecompareTo}methodisnolongerdefinedinthisclassinversion2.0.*Instead,thedefinitionissimplyinheritedfromthe{@codeComparable}interface.*Thisapproachisnecessarytopreservebinarycompatibility.*Thedefinitionofthecomparisonisascendingorderbymillisecondinstant.*Implementorsarerecommendedtoextend{@codeAbstractInstant}insteadofthisinterface.**@authorStephenColebourne*@since1.0*/publicinterfaceReadableInstantextendsComparable<ReadableInstant>{/***Getthevalueasthenumberofmillisecondssince*theepoch,1970-01-01T00:00:00Z.**@returnthevalueasmilliseconds*/longgetMillis();······}DateTime 类继承图如下:局部性(Partial)瞬时性表达的是与epoch相对的时间上的一个精确时刻,而一个局部时间指的是一个时间的一部分片段,其可以通过一些方法使得时间产生变动(本质上还是生成了新的类),这样可以把它当做重复周期中的一点,用到多个地方。

年表(Chronology)Joda-Time的设计核心就是年表(org.joda.time.Chronology),从根本上将,年表是一种日历系统,是一种计算时间的特殊方式,并且在其中执行日历算法的框架。

Joda-Time支持的8种年表如下所示:ISO(默认) – org.joda.time.chrono.ISOChronologyGJ – org.joda.time.chrono.GJChronologyGregorian – org.joda.time.chrono.GregorianChronologyJulian – org.joda.time.chrono.JulianChronologyCoptic – org.joda.time.chrono.CopticChronologyBuddhist – org.joda.time.chrono.BuddhistChronologyEthiopic – org.joda.time.chrono.EthiopicChronologyIslamic – org.joda.time.chrono.IslamicChronology以上的每一种年表都可以作为特定日历系统的计算引擎,是可插拔的实现。

时区(Time zone)具体定义详见百科解释,在实际编码过程中任何严格的时间计算都必须涉及时区(或者相对于GMT),Joda-Time中对应的核心类为org.joda.time.DateTimeZone,虽然日常的使用过程中,并未涉及到对时区的 *** 作,但是DateTimeZone如何对DateTime产生影响是比较值得注意的,此处不进行赘述。

2.3 具体使用方法上面介绍我完了Joda-Time的一些概念,接下来具体使用我们来进行说明:2.3.1 创建 Joda-Time 对象瞬时性-ReadableInstant//1.使用系统时间DateTimedateTime1=newDateTime();//2.使用jdk中的dateDatejdkDate1=newDate();DateTimedateTime2=newDateTime(jdkDate1);//3.使用毫秒数指定DatejdkDate2=newDate();longmillis=jdkDate.getTime();DateTimedateTime3=newDateTime(millis);//4.使用CalendarCalendarcalendar=Calendar.getInstance();DateTimedateTime4=newDateTime(calendar);//5.使用多个字段指定一个瞬间时刻(局部时间片段)//yearmonthdayhour(midnightiszero)minutesecondmillisecondsDateTimedateTime5=newDateTime(2000,1,1,0,0,0,0);//6.由一个DateTime生成另一个DateTimeDateTimedateTime6=newDateTime(dateTime1);//7.有时间字符串生成DateTimeStringtimeString="2019-01-01T00:00:00-06:00";DateTimedateTime7=DateTime.parse(timeString);局部性-ReadablePartial当程序中处理的日期、时间并不需要是完整时刻的时候,可以创建一个局部时间,比如只希望专注于年/月/日, 或者一天中的时间,或者是一周中的某天。

Joda-Time中有表示这些时间的是org.joda.time.ReadablePartial接口,实现它的两个类LocalDate和LocalTime是分别用来表示年/月/日和一天中的某个时间的。

//显示地提供所含的每个字段LocalDatelocalDate=newLocalDate(2019,1,1);//6:30:06PMLocalTimelocalTime=newLocalTime(18,30,6,0);LocalDate是替代了早期Joda-Time版本中使用的org.joda.time.YearMonthDay,LocalTime是替代早期版本的org.joda.time.TimeOfDay。

(均已被标注为过时状态)。

时间跨度Joda-Time提供了三个类用于表示时间跨度(在某些业务需求中,它们可能会非常有用)。

Duration这个类表示以毫秒为单位的绝对精度,提供标准数学转换的方法,同时把时间跨度转换为标准单位。

Period这个类表示以年月日单位表示。

Interval这个类表示一个特定的时间跨度,使用一个明确的时刻界定这段时间跨度的范围。

Interval 为半开 区间,所以由其封装的时间跨度包括这段时间的起始时刻,但是不包含结束时刻。

2.3.2 使用Joda-Time的方法处理时间DateTimetoday=newDateTime();//获取777秒之前的时间DateTimedateTime1=today.minus(777*1000);//获取明天的时间DateTimetomorrow=today.plusDays(1);//获取当月第一天的日期DateTimedateTime2=today.withDayOfMonth(1);//获取当前时间三个月后的月份的最后一天DateTimedateTime3=today.plusMonths(3).dayOfMonth().withMaximumValue();下面列出部分DateTime方法列表: plus/minus开头的方法(比如:plusDay, minusMonths):用来返回在DateTime实例上增加或减少一段时间后的实例plus(long duration) 增加指定毫秒数并返回plusYears(int years) 增加指定年份并返回plusMonths(int months) 增加指定月份并返回plusWeeks(int weeks) 增加指定星期并返回plusDays(int days) 增加指定天数并返回plusHours(int hours) 增加指定小时并返回plusMinutes(int minutes) 增加指定分钟并返回plusSeconds(int seconds) 增加指定秒数并返回plusMillis(int millis) 增加指定毫秒并返回与之相反的是minus前缀的 plus是增加 minus是减少with开头的方法:用来返回在DateTime实例更新指定日期单位后的实例withCenturyOfEra(int centuryOfEra) 更新时间世纪单位并返回withYearOfCentury(int yearOfCentury)更新世纪年并返回withYear(int year) 更新时间年并返回withWeekyear(int weekyear) 更新时间周数并返回withMonthOfYear(int monthOfYear)更新时间月份并返回withDayOfYear(int dayOfYear) 更新时间天数并返回withDayOfMonth(int dayOfMonth) 更新时间天数并返回withDayOfWeek(int dayOfWeek) 更新时间天数并返回withHourOfDay(int hour) 更新时间小时并返回withMinuteOfHour(int minute) 更新时间分钟并返回withSecondOfMinute(int second) 更新时间秒数并返回withMillisOfSecond(int millis) 更新时间毫秒并返回withMillisOfDay(int millis) 更新时间毫秒并返回withTimeAtStartOfDay() 获取当天最早时间判断DateTime对象大小状态的一些 *** 作方法compareTo(DateTime d) 比较两时间大小 时间大于指定时间返回 1 时间小于指定时间返回-1 相等返回0equals(DateTime d) 比较两时间是否相等isAfter(long instant) 判断时间是否大于指定时间isAfterNow() 判断时间是否大于当前时间isBefore(long instant) 判断时间是否小于指定时间isBeforeNow() 判断时间是否小于当前时间isEqual(long instant) 判断时间是否等于指定时间isEqualNow() 判断时间是否等于当前时间2.3.3 以Joda-Time的方式格式化时间//传入的格式化模板只需与JDKSimpleDateFormat兼容的格式字符串即可publicstaticStringconvert(Datedate,StringdateFormat){returnnewDateTime(date).toString(dateFormat);}//将JDK中的Date转化为UTC时区的DateTimeDateTimedateTime=newDateTime(newDate(),DateTimeZone.UTC);//将String转换为DateTimepublicstaticDateconvertUTC2Date(StringutcDate){DateTimedateTime=DateTime.parse(utcDate,DateTimeFormat.forPattern("yyyy-MM-dd'T'HH:mm:ss.SSSZ"));returndateTime.toDate();}更多使用方法请参考官方文档。

三、JAVA 8中新的时间类库3.1 简介由于JDK之前版本的类库的缺陷和糟糕的使用体验,再加上已经成为事实标准Joda-Time的影响力,Oracle决定在JAVA API中提供高质量的日期和时间支持,这也就是整合了大部分Joda-Time特性的JDK 8新的时间类库。

(Joda-Time的作者实际参与开发,并且实现了JSR310的全部内容,新的API位于java.time下。

常用的类有以下几个:LocalDate、LocalTime、Instant、Duration和Period。

)由于JDK 8 新的时间类库大量借鉴了Joda-Time的设计思想乃至命名,因此如果你是Joda-Time的使用者,那你可以无学习成本的使用新的API(当然,它们之间也存在些许差别需要注意到)。

3.2 使用方法3.2.1 使用LocalDate 和LocalTime首先是LocalDate,该类的实例是一个不可变对象,它只提供了简单的日期,并不含当天的时间信息。

另外,它也不附带任何与时区相关的信息。

//使用指定的日期创建LocalDateLocalDatedate=LocalDate.of(2019,1,1);//获取当前日期LocalDatetoday=LocalDate.now();//获取今日的属性intyear=date.getYear();Monthmonth=date.getMonth();intday=date.getDayOfMonth();DayOfWeekdow=date.getDayOfWeek();intlen=date.lengthOfMonth();booleanleap=date.isLeapYear();//通过ChronoField的枚举值获取需要的属性字段intyear=date.get(ChronoField.YEAR);接着是LocalTime,它表示了一天内的某个时刻。

LocalTimetime=LocalTime.of(18,18,18);inthour=time.getHour();intminute=time.getMinute();intsecond=time.getSecond();LocalDate和LocalTime都可以通过使用静态方法parse来解析字符串进行创建。

LocalDatedate=LocalDate.parse("2019-01-01");LocalTimetime=LocalTime.parse("18:18:18");也可以向parse方法传递一个DateTimeFormatter,该类的实例定义了如何格式化一个日期或者时间对象。

它其实是老版java.util.DateFormat的替代品。

3.2.2 LocalDateTime//直接创建LocalDateTimeLocalDateTimedt1=LocalDateTime.of(2019,Month.JANUARY,1,18,18,18);//合并日期和时间LocalDatedate=LocalDate.parse("2019-01-01");LocalTimetime=LocalTime.parse("18:18:18");LocalDateTimedt2=LocalDateTime.of(date,time);LocalDateTimedt3=date.atTime(18,18,18);LocalDateTimedt4=date.atTime(time);LocalDateTimedt5=time.atDate(date);//从LocalDateTime中提取LocalDate或者LocalTimeLocalDatedate1=dt1.toLocalDate();LocalTimetime1=dt1.toLocalTime();3.3.3 InstantInstant类是为了方便计算机理解的而设计的,它表示一个持续时间段上某个点的单一大整型数,实际上它是以Unix元年时间(传统的设定为UTC时区1970年1月1日午夜时分)开始所经历的秒数进行计算(最小计算单位为纳秒)。

//传递一个秒数已创建该类的实例Instant.ofEpochSecond(3);//传递一个秒数+纳秒2秒之后再加上100万纳秒(1秒)Instant.ofEpochSecond(2,1_000_000_000);3.3.4 Duration与PeriodDuration是用于比较两个LocalTime对象或者两个Instant之间的时间差值。

Durationd1=Duration.between(time1,time2);Durationd1=Duration.between(dateTime1,dateTime2);Durationd2=Duration.between(instant1,instant2);Period是用于对年月日的方式对多个时间进行比较。

PeriodtenDays=Period.between(LocalDate.of(2019,1,1),lcalDate.of(2019,2,2));当然,Duration和Period类都提供了很多非常方便的工厂类,直接创建对应的实例。

DurationthreeMinutes=Duration.ofMinutes(3);DurationthreeMinutes=Duration.of(3,ChronoUnit.MINUTES);PeriodtenDays=Period.ofDays(10);PeriodthreeWeeks=Period.ofWeeks(3);PeriodtwoYearsSixMonthsOneDay=Period.of(2,6,1);3.3.5 *** 作、解析和格式化日期//直接使用withAttribute的方法修改LocalDatedate1=LocalDate.of(2019,1,1);LocalDatedate2=date1.withYear(2019);LocalDatedate3=date2.withDayOfMonth(1);LocalDatedate4=date3.with(ChronoField.MONTH_OF_YEAR,1);所有声明了Temporal接口的类LocalDate、LocalTime、LocalDateTime以及Instant,它们都使用get和with方法,将对象值的读取和修改区分开,如果使用了不支持的字段访问字段,会抛出一个UnsupportedTemporalTypeException异常。

类似的,plus方法和minus方法都声明于Temporal接口。

通过这些方法,对TemporalUnit对象加上或者减去一个数字,我们能非常方便地将Temporal对象前溯或者回滚至某个时间段,通过ChronoUnit枚举我们可以非常方便地实现TemporalUnit接口。

3.3.6 更多定制化的处理时间向重载的with方法传递一个定制化的TemporalAdjuster对象,可以更加灵活地处理日期。

时间和日期的API已经提供了大量预定义的TemporalAdjuster,可以通过TemporalAdjuster类的静态工厂方法访问它们。

这些方法的名称非常直观,方法名就是问题描述。

某些情况下,如果你需要定义自己的TemporalAdjuster,只需要声明TemporalAdjuster接口并且自己实现对应的方法即可。

LocalDatedate1=LocalDate.of(2014,3,18);LocalDatedate2=date1.with(TemporalAdjuster.nextOrSame(DayOfWeek.SUNDAY));LocalDatedate3=date2.with(TemporalAdjuster.lastDayOfMonth());3.3.7 解析日期-时间对象日常工作中,格式化以及解析日期-时间对象是另一个非常重要的功能,而新的java.time.format包就是特别为我们达到这个目的而设计的。

这其中,最重要的类是DateTimeFormatter。

所有的DateTimeFormatter实例都能用于以一定的格式创建代表特定日期或时间的字符串。

(与老的java.util.DateFormat相比较,所有的DateTimeFormatter实例都是线程安全的)//使用不同的格式器生成字符串LocalDatedate=LocalDate.of(2019,1,1);Strings1=date.format(DateTimeFormatter.BASIC_ISO_DATE);Strings2=date.format(DateTimeFormatter.ISO_LOCAL_DATE);//生成LocalDate对象LocalDatedate1=LocalDate.parse("20190101",DateTimeFormatter.BASIC_ISO_DATE);LocalDatedate2=LocalDate.parse("2019-01-01",DateTimeFormatter.ISO_LOCAL_DATE);//使用特定的模式创建格式器DateTimeFormatterformatter=DateTimeFormatter.ofPattern("dd/MM/yyyy");LocalDatedate1=LocalDate.of(2019,1,1);StringformattedDate=date1.format(formatter);LocalDatedate2=LocalDate.parse(formattedDate,formatter);3.3.8 处理不同的时区和日历系统在新的日期-时间类库中,为了最大程度上的减少在处理时区带来的繁琐和复杂而使用了新的java.time.ZoneId类(与其他日期和时间类一样,ZoneId类也是无法修改的) 来替代老版的java.util.TimeZone。

时区是按照一定的规则将区域划分成标准时间相同的区间。

在ZoneRules这个类中包含了40个这样的实例。

可以简单地通过调用ZoneId的getRules()得到指定时区的规则。

每个特定的ZoneId对象都由一个地区ID标识,地区ID都为“{区域}/{城市}”的格式。

比如:ZoneIdromeZone=ZoneId.of("Asia/Shanghai");Java 8中在原先的TimeZone中加入了新的方法toZoneId,其作用是将一个老的时区对象转换为ZoneId:ZoneIdzoneId=TimeZone.getDefault().toZoneId();得到的ZoneId对象后可以将它与LocalDate、LocalDateTime或者是Instant对象整合起来,构造为一个ZonedDateTime实例,它代表了相对于指定时区的时间点:LocalDatedate=LocalDate.of(2019,Month.JANUARY,1);ZonedDateTimezdt1=date.atStartOfDay(romeZone);LocalDateTimedateTime=LocalDateTime.of(2019,Month.JANUARY,18,13,45);ZonedDateTimezdt2=dateTime.atZone(romeZone);Instantinstant=Instant.now();ZonedDateTimezdt3=instant.atZone(romeZone);通过ZoneId,还可以将LocalDateTime转换为Instant:LocalDateTimedateTime=LocalDateTime.of(2019,Month.JANUARY,18,13,45);InstantinstantFromDateTime=dateTime.toInstant(romeZone);同样可以通过反向的方式得到LocalDateTime对象:Instantinstant=Instant.now();LocalDateTimetimeFromInstant=LocalDateTime.ofInstant(instant,romeZone);与Joda-Time所不同的是,Java8中的日期-时间类库提供了4种其他的日历系统,这些日历系统中的每一个都有一个对应的日志类,分别是ThaiBuddhistDate、MinguoDate 、JapaneseDate 以及HijrahDate 。

所有这些类以及LocalDate 都实现了ChronoLocalDate接口,能够对公历的日期进行建模。

利用LocalDate对象,你可以创建这些类的实例。

同样的,利用它们提供的静态工厂方法,你可以创建任何一个Temporal对象的实例。

LocalDatedate=LocalDate.of(2019,Month.JANUARY,1);JapaneseDatejapaneseDate=JapaneseDate.from(date);参考资料Joda-Time 简介 Joda Time项目和java8时间api动态计算时间段需求:如现在是13:00,则时间段为15:10-17:10、17:10-19:10、19:10-21:10;即最早的出发时间为当前时间+参数【2h10min】,最迟的时间段为开始时间在20点前结束时间在20点后的时间段),求解共有多少个时间段?分析:第一个时间段的开始时间:当前时间+参数【2h10min】,中间的时间段是2h;通过理解这句:最迟的时间段为开始时间在20点前结束时间在20点后的时间段,我们可以假设最大的时间变量为 max假设当前时间为now,总共有n个时间段,可以推导出公式:now + (2h * n) + 10min <= max;注意:计算过程都转换成毫秒publicclassTest{//毫秒staticfinallongslot=130*60*1000;privatestaticList<TimeSelectItem>buildStartEndTime(Longnow,Longmax){//now+(2h*n)+10min<=max;Longn=(max-now-60*1000)/(120*60*1000);System.out.println("max:"+max);System.out.println("now:"+now);System.out.println("max-now:"+(max-now));System.out.println("n:"+n);List<TimeSelectItem>timeSelectItems=newArrayList<>();LongstartTimestamp=now+slot;LongendTimestamp=startTimestamp+120*60*1000;for(inti=1;i<=n;i++){//起始时间//startTimestamp=startTimestamp+i*(120*60*1000);//结束时间endTimestamp=startTimestamp+(120*60*1000);System.out.println(startTimestamp);System.out.println(endTimestamp);TimeSelectItemitem=newTimeSelectItem();DateTimedt=newDateTime(startTimestamp);inthour=dt.hourOfDay().get();intmillis=dt.getMinuteOfHour();StringstartTag=hour+":"+millis;DateTimedt1=newDateTime(endTimestamp);inthour1=dt1.hourOfDay().get();longmillis1=dt1.getMinuteOfHour();StringenTag=hour1+":"+millis1;item.setDisplayName(startTag+"-"+enTag);item.setStartTimestamp(startTimestamp);item.setEndTimestamp(endTimestamp);timeSelectItems.add(item);startTimestamp=endTimestamp;}returntimeSelectItems;}publicstaticvoidmain(String[]args){Longstart=DateTime.now().getMillis();Calendarc=Calendar.getInstance();c.setTime(newDate());c.set(Calendar.HOUR_OF_DAY,20);c.set(Calendar.MINUTE,0);c.set(Calendar.SECOND,0);DateTimedt=newDateTime();dt.withHourOfDay(20);Longend=c.getTimeInMillis();//List<TimeSelectItem>list=buildStartEndTime(1614747600000L,1614772800000L);List<TimeSelectItem>list=buildStartEndTime(1614834000000L,end);for(TimeSelectItemitem:list){System.out.println(item);}}}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/659990.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-18
下一篇 2022-04-18

发表评论

登录后才能评论

评论列表(0条)

保存