当前位置: 首页 > news >正文

茂名企业建站程序免费建手机网站的软件

茂名企业建站程序,免费建手机网站的软件,便宜电商网站建设,ppt模板包含哪些内容java8日期转时间戳如今#xff0c;一些应用程序仍在使用java.util.Date和java.util.Calendar API#xff0c;包括使我们的生活更轻松地使用这些类型的库#xff0c;例如JodaTime。 但是#xff0c;Java 8引入了新的API来处理日期和时间#xff0c;这使我们可以对日期和时间… java8日期转时间戳 如今一些应用程序仍在使用java.util.Date和java.util.Calendar API包括使我们的生活更轻松地使用这些类型的库例如JodaTime。 但是Java 8引入了新的API来处理日期和时间这使我们可以对日期和时间表示进行更精细的控制为我们提供不可变的datetime对象更流畅的API以及在大多数情况下提高性能而无需使用其他库。 让我们看一下基础知识。 LocalDate / LocalTime / LocalDateTime 让我们开始与最相关的新API的java.util.Date LocalDate 日期的API表示没有时间的日期; LocalTime 不带日期的时间表示 和LocalDateTime 这是前两个的组合。 所有这些类型都代表一个区域的本地日期和/或时间但是就像java.util.Date一样它们包含零表示该区域的信息仅表示当前日期和时间。时区。 首先这些API支持简单的实例化 LocalDate date LocalDate.of(2018,2,13); // Uses DateTimeformatter.ISO_LOCAL_DATE for which the format is: yyyy-MM-dd LocalDate date LocalDate.parse(2018-02-13);LocalTime time LocalTime.of(6,30); // Uses DateTimeFormatter.ISO_LOCAL_TIME for which the format is: HH:mm[:ss[.SSSSSSSSS]] // this means that both seconds and nanoseconds may optionally be present. LocalTime time LocalTime.parse(06:30);LocalDateTime dateTime LocalDateTime.of(2018,2,13,6,30); // Uses DateTimeFormatter.ISO_LOCAL_DATE_TIME for which the format is the // combination of the ISO date and time format, joined by T: yyyy-MM-ddTHH:mm[:ss[.SSSSSSSSS]] LocalDateTime dateTime LocalDateTime.parse(2018-02-13T06:30); 在它们之间进行转换很容易 // LocalDate to LocalDateTime LocalDateTime dateTime LocalDate.parse(2018-02-13).atTime(LocalTime.parse(06:30));// LocalTime to LocalDateTime LocalDateTime dateTime LocalTime.parse(06:30).atDate(LocalDate.parse(2018-02-13));// LocalDateTime to LocalDate/LocalTime LocalDate date LocalDateTime.parse(2018-02-13T06:30).toLocalDate(); LocalTime time LocalDateTime.parse(2018-02-13T06:30).toLocalTime(); 除此之外使用plus和minus方法以及一些实用程序功能对我们的日期和时间表示进行操作非常容易 LocalDate date LocalDate.parse(2018-02-13).plusDays(5); LocalDate date LocalDate.parse(2018-02-13).plus(3, ChronoUnit.MONTHS);LocalTime time LocalTime.parse(06:30).minusMinutes(30); LocalTime time LocalTime.parse(06:30).minus(500, ChronoUnit.MILLIS);LocalDateTime dateTime LocalDateTime.parse(2018-02-13T06:30).plus(Duration.ofHours(2));// using TemporalAdjusters, which implements a few useful cases: LocalDate date LocalDate.parse(2018-02-13).with(TemporalAdjusters.lastDayOfMonth()); 现在我们如何从java.util.Date移到LocalDateTime及其变体 好吧这很简单我们可以将Date类型转换为Instant类型该类型表示从1970年1月1日开始的时间然后我们可以使用Instant和当前区域实例化LocalDateTime 。 LocalDateTime dateTime LocalDateTime.ofInstant(new Date().toInstant(), ZoneId.systemDefault()); 要转换回日期我们可以简单地使用Java 8时间类型表示的Instant。 但是要注意的一件事是尽管LocalDate LocalTime和LocalDateTime不包含任何Zone或Offset信息但它们确实表示特定区域中的本地日期和/或时间因此它们确实保留了当前的偏移量。在那个地区。 因此我们需要提供一个偏移量以将特定类型正确转换为Instant。 // represents Wed Feb 28 23:24:43 CET 2018 Date now new Date();// represents 2018-02-28T23:24:43.106 LocalDateTime dateTime LocalDateTime.ofInstant(now.toInstant(), ZoneId.systemDefault());// represent Wed Feb 28 23:24:43 CET 2018 Date date Date.from(dateTime.toInstant(ZoneOffset.ofHours(1))); Date date Date.from(dateTime.toInstant(ZoneId.systemDefault().getRules().getOffset(dateTime)));时间差异–持续时间和期间 您已经注意到在以上示例之一中我们使用了Duration对象。 Duration和Period是两个日期之间时间的两种表示形式前者表示以秒和纳秒为单位的时间差后者以天月和年表示。 什么时候应该使用这些 Period 当你需要知道两者之间的时间差LocalDate陈述 Period period Period.between(LocalDate.parse(2018-01-18), LocalDate.parse(2018-02-14)); 您在寻找具有时间信息的表示形式之间的差异时的Duration时间 Duration duration Duration.between(LocalDateTime.parse(2018-01-18T06:30), LocalDateTime.parse(2018-02-14T22:58)); 使用toString()输出Period或Duration 将基于ISO-8601标准使用特殊格式。 周期使用的模式是PnYnMnD其中n定义周期内存在的年月或日的数量。 这意味着P1Y2M3D定义为1年2个月3天。 。 模式中的“ P”是时段指示符它告诉我们以下格式表示一个时段。 使用该模式我们还可以使用parse()方法基于字符串创建句点。 // represents a period of 27 days Period period Period.parse(P27D); 使用Durations 由于Java 8不使用相同的模式因此我们稍微偏离了ISO-8601标准。 ISO-8601定义的模式是PnYnMnDTnHnMn.nS。 这基本上是“ Period模式带有时间表示形式。 在模式中T是时间标记因此后面的部分定义了以小时分钟和秒为单位的持续时间。 Java的8个使用两种特定模式的Duration 解析字符串一当就是PnDTnHnMn.nS Duration 以及调用时PTnHnMn.nS toString()上的一个方法Duration实例。 最后但并非最不重要的一点是我们还可以通过使用类型上的相应方法来检索时间段或持续时间的各个部分。 但是重要的是要知道各种日期时间类型也通过使用ChronoUnit枚举类型来支持此功能。 让我们看一些例子 // represents PT664H28M Duration duration Duration.between(LocalDateTime.parse(2018-01-18T06:30), LocalDateTime.parse(2018-02-14T22:58));// returns 664 long hours duration.toHours();// returns 664 long hours LocalDateTime.parse(2018-01-18T06:30).until(LocalDateTime.parse(2018-02-14T22:58), ChronoUnit.HOURS);使用区域和偏移量– ZonedDateTime和OffsetDateTime 到目前为止我们已经展示了新的日期API如何使某些事情变得容易一些。 但是真正与众不同的是在时区上下文中轻松使用日期和时间的能力。 Java 8为我们提供了ZonedDateTime和OffsetDateTime 第一个是LocalDateTime其中包含特定区域例如欧洲/巴黎的信息第二个是带有偏移量的LocalDateTime 。 有什么不同 OffsetDateTime使用UTC /格林威治标准时间与指定日期之间的固定时差而ZonedDateTime指定表示时间的区域并将考虑夏时制。 转换为以下两种类型都很容易 OffsetDateTime offsetDateTime LocalDateTime.parse(2018-02-14T06:30).atOffset(ZoneOffset.ofHours(2)); // Uses DateTimeFormatter.ISO_OFFSET_DATE_TIME for which the default format is // ISO_LOCAL_DATE_TIME followed by the offset (HH:mm:ss). OffsetDateTime offsetDateTime OffsetDateTime.parse(2018-02-14T06:3006:00);ZonedDateTime zonedDateTime LocalDateTime.parse(2018-02-14T06:30).atZone(ZoneId.of(Europe/Paris)); // Uses DateTimeFormatter.ISO_ZONED_DATE_TIME for which the default format is // ISO_OFFSET_DATE_TIME followed by the the ZoneId in square brackets. ZonedDateTime zonedDateTime ZonedDateTime.parse(2018-02-14T06:3008:00[Asia/Macau]); // note that the offset does not matter in this case. // The following example will also return an offset of 08:00 ZonedDateTime zonedDateTime ZonedDateTime.parse(2018-02-14T06:3006:00[Asia/Macau]); 在它们之间进行切换时必须记住从ZonedDateTime转换为OffsetDateTime将考虑夏时制而在另一个方向上从OffsetDateTime至ZonedDateTime意味着您将没有有关区域区域的信息也不会对夏时制应用任何规则。 这是因为偏移量未定义任何时区规则也未绑定到特定区域。 ZonedDateTime winter LocalDateTime.parse(2018-01-14T06:30).atZone(ZoneId.of(Europe/Paris)); ZonedDateTime summer LocalDateTime.parse(2018-08-14T06:30).atZone(ZoneId.of(Europe/Paris));// offset will be 01:00 OffsetDateTime offsetDateTime winter.toOffsetDateTime(); // offset will be 02:00 OffsetDateTime offsetDateTime summer.toOffsetDateTime();OffsetDateTime offsetDateTime zonedDateTime.toOffsetDateTime();OffsetDateTime offsetDateTime LocalDateTime.parse(2018-02-14T06:30).atOffset(ZoneOffset.ofHours(5)); ZonedDateTime zonedDateTime offsetDateTime.toZonedDateTime(); 现在如果我们想知道特定时区或偏移时间在我们自己的时区中怎么办 嗯为此还定义了一些方便的功能 // timeInMacau represents 2018-02-14T13:3008:00[Asia/Macau] ZonedDateTime timeInMacau LocalDateTime.parse( 2018-02-14T13:30 ).atZone( ZoneId.of( Asia/Macau ) ); // timeInParis represents 2018-02-14T06:3001:00[Europe/Paris] ZonedDateTime timeInParis timeInMacau.withZoneSameInstant( ZoneId.of( Europe/Paris ) );OffsetDateTime offsetInMacau LocalDateTime.parse( 2018-02-14T13:30 ).atOffset( ZoneOffset.ofHours( 8 ) ); OffsetDateTime offsetInParis offsetInMacau.withOffsetSameInstant( ZoneOffset.ofHours( 1 ) ); 如果我们不得不一直在这些类型之间手动进行转换以获取我们需要的类型那将是一件麻烦事。 这就是Spring框架为我们提供帮助的地方。 Spring为我们提供了许多现成的日期时间转换器这些日期时间转换器已在ConversionRegistry中注册可以在org.springframework.format.datetime.standard.DateTimeConverters类中找到。 使用这些转换器时重要的是要知道它不会转换区域或偏移量之间的时间。 该ZonedDateTimeToLocalDateTimeConverter 例如将返回LocalDateTime因为它是在而不是指定的区域LocalDateTime 它会在你的应用程序的区域代表。 ZonedDateTime zonedDateTime LocalDateTime.parse(2018-01-14T06:30).atZone(ZoneId.of(Asia/Macau)); // will represent 2018-01-14T06:30, regardless of the region your application has specified LocalDateTime localDateTime conversionService.convert(zonedDateTime, LocalDateTime.class); 最后但并非最不重要的一点是您可以查询ZoneId.getAvailableZoneIds()来查找所有可用时区或使用地图ZoneId.SHORT_IDS 其中包含一些时区的缩写版本例如ESTCST等。 格式化–使用 当然世界各地都使用不同的格式来指定时间。 一个应用程序可能使用MM-dd-yyyy而另一个应用程序使用dd / MM / yyyy。 一些应用程序希望消除所有混淆并用yyyy-MM-dd表示其日期。 使用java.util.Date 我们将快速转向使用多个格式化程序。 但是 DateTimeFormatter类为我们提供了可选的模式因此我们可以将单个格式化程序用于多种格式 让我们来看一些例子。 // Let’s say we want to convert all of patterns mentioned above. // 09-23-2018, 23/09/2018 and 2018-09-23 should all convert to the same LocalDate. DateTimeFormatter formatter DateTimeFormatter.ofPattern([yyyy-MM-dd][dd/MM/yyyy][MM-dd-yyyy]); LocalDate.parse(09-23-2018, formatter); LocalDate.parse(23/09/2018, formatter); LocalDate.parse(2018-09-23, formatter); 模式中的方括号定义了模式中的可选部分。 通过使我们的各种格式成为可选与字符串匹配的第一个模式将用于转换我们的日期表示形式。 当您使用多种模式时这可能很难理解因此让我们看一下使用构建器模式创建DateTimeFormatter方法。 DateTimeFormatter formatter new DateTimeFormatterBuilder().appendOptional( DateTimeFormatter.ofPattern( yyyy-MM-dd ) ).optionalStart().appendPattern( dd/MM/yyyy ).optionalEnd().optionalStart().appendPattern( MM-dd-yyyy ).optionalEnd().toFormatter(); 这些是包含多个模式的基础但是如果我们的模式仅稍有不同该怎么办 让我们看一下yyyy-MM-dd和yyyy-MMM-dd。 // 2018-09-23 and 2018-Sep-23 should convert to the same LocalDate. // Using the ofPattern example we’ve used above will work: DateTimeFormatter formatter DateTimeFormatter.ofPattern([yyyy-MM-dd][yyyy-MMM-dd] ); LocalDate.parse( 2018-09-23, formatter ); LocalDate.parse( 2018-Sep-23, formatter );// Using the ofPattern example where we reuse the common part of the pattern DateTimeFormatter formatter DateTimeFormatter.ofPattern( yyyy-[MM-dd][MMM-dd] ); LocalDate.parse( 2018-09-23, formatter ); LocalDate.parse( 2018-Sep-23, formatter ); 但是在转换为字符串时不应使用支持多种格式的格式化程序因为当我们使用格式化程序将日期格式化为字符串表示形式时它还将使用可选模式。 LocalDate date LocalDate.parse(2018-09-23); // will result in 2018-09-232018-Sep-23 date.format(DateTimeFormatter.ofPattern([yyyy-MM-dd][yyyy-MMM-dd] )); // will result in 2018-09-23Sep-23 date.format(DateTimeFormatter.ofPattern( yyyy-[MM-dd][MMM-dd] )); 由于我们处于21世纪因此显然我们必须考虑全球化并且我们希望为用户提供本地化日期。 为确保您的DateTimeFormatter返回特定的语言环境您只需执行以下操作 DateTimeFormatter formatter DateTimeFormatter.ofPattern( EEEE, MMM dd, yyyy ).withLocale(Locale.UK);DateTimeFormatter formatter new DateTimeFormatterBuilder().appendPattern(yyyy-MMM-dd ).toFormatter(Locale.UK); 要查找可用的语言环境可以使用Locale.getAvailableLocales() 。 现在可能是您收到的日期格式比您使用的类型包含更多的信息。 一旦提供的日期表示形式与该模式不一致则DateTimeFormatter将引发异常。 让我们仔细研究这个问题以及如何解决它。 // The issue: this will throw an exception. LocalDate date LocalDate.parse(2018-02-15T13:45); // We provide a DateTimeFormatter that can parse the given date representation. // The result will be a LocalDate holding 2018-02-15. LocalDate date LocalDate.parse(2018-02-15T13:45, DateTimeFormatter.ISO_LOCAL_DATE_TIME); 让我们创建一个可以处理ISO日期时间和日期时间模式的格式化程序。 DateTimeFormatter formatter new DateTimeFormatterBuilder().appendOptional( DateTimeFormatter.ISO_LOCAL_DATE ).optionalStart().appendLiteral( T ).optionalEnd().appendOptional( DateTimeFormatter.ISO_LOCAL_TIME ).toFormatter(); 现在我们可以完美地执行以下所有操作 // results in 2018-03-16 LocalDate date LocalDate.parse( 2018-03-16T06:30, formatter ); LocalDate date LocalDate.parse( 2018-03-16, formatter ); // results in 06:30 LocalTime time LocalTime.parse( 2018-03-16T06:30, formatter ); LocalTime time LocalTime.parse( 06:30, formatter ); LocalDateTime localDateTime LocalDateTime.parse( 2018-03-16T06:30, formatter ); 现在下一期是哪里来的 如果您尝试解析LocalDateTime的日期模式怎么办 如果您希望使用LocalTime并得到日期表示反之亦然怎么办 // will throw an exception LocalDateTime localDateTime LocalDateTime.parse(2018-03-16, formatter); LocalDate localDate LocalDate.parse(06:30, formatter); 对于这后两种情况没有一个正确的解决方案但这取决于您的要求或者这些日期和时间代表或可能代表什么。 使用TemporalQuery可以找到魔术您可以使用它为模式的一部分创建默认值。 如果我们以LocalDateTime开头而您只需要LocalDate或LocalTime 则将收到LocalDateTime的相应部分。 要创建LocalDateTime 我们需要其保存的日期和时间的默认值。 假设如果您不提供有关日期的信息我们将返回今天的日期如果您不提供时间则将假设您的意思是一天的开始。 由于我们将返回LocalDateTime 因此不会将其解析为LocalDate或LocalTime 因此让我们使用ConversionService来获取正确的类型。 TemporalQueryTemporalAccessor myCustomQuery new MyCustomTemporalQuery(); // results in 2018-03-16 LocalDateTime localDateTime conversionService.convert( formatter.parse( 2018-03-16, myCustomQuery ), LocalDateTime.class ); // results in 00:00 LocalTime localTime conversionService.convert( formatter.parse( 2018-03-16, myCustomQuery ), LocalTime.class );class MyCustomTemporalQuery implements TemporalQueryTemporalAccessor {Overridepublic TemporalAccessor queryFrom( TemporalAccessor temporal ) {LocalDate date temporal.isSupported( ChronoField.EPOCH_DAY )? LocalDate.ofEpochDay( temporal.getLong( ChronoField.EPOCH_DAY ) ) : LocalDate.now();LocalTime time temporal.isSupported( ChronoField.NANO_OF_DAY )? LocalTime.ofNanoOfDay( temporal.getLong( ChronoField.NANO_OF_DAY ) ) : LocalTime.MIN;return LocalDateTime.of( date, time );} } 使用TemporalQuery 我们可以检查存在的信息并为缺少的任何信息提供默认值从而使我们能够使用应用程序中有意义的逻辑轻松地转换为所需的类型。 要了解如何编写有效的时间模式请查看DateTimeFormatter文档 。 结论 大多数新功能需要一些时间来理解和习惯Java 8 Date / Time API也不例外。 新的API使我们能够更好地访问必要的正确格式以及使用日期时间操作的更加标准化和易读的方式。 使用这些提示和技巧我们几乎可以涵盖所有用例。 翻译自: https://www.javacodegeeks.com/2018/03/java-8-date-and-time.htmljava8日期转时间戳
http://www.yutouwan.com/news/371959/

相关文章:

  • 招标网站建设招标方案建设部二级结构工程师注销网站
  • 专题网站设计定制衣服的app叫什么
  • 深圳网站建设网络网站建设技术规范及要求
  • 机票便宜网站建设做网站用什么语言开发
  • 专业的手机网站建设公司网页设计首页尺寸
  • 网站建设 软文发布dede二手车网站源码
  • 做网站报价单系统优化有什么用
  • 北京企业官网网站建设手机可以做网站吗?
  • 河北智能网站建设wordpress zhai主题
  • 手机端网站设计重庆网站建设哪里比较好呢
  • 完整网站源码asp在线制作网页网站
  • 上海 微信网站 建站网店运营推广中级实训
  • 超炫的网站模板wordpress框架解密
  • 怎么开网站做网红顺企网是什么网站
  • 网站首页的模块布局深圳百度公司地址
  • 泰州seo网站推广自己做的网站如何引流
  • 织梦网站有会员系统怎么做iis wordpress 500
  • 360商场内部seo管理平台
  • 顺德网站建设服务平台自己设计图片的软件
  • 东莞高端网站建设公司dw做个人简历网页怎么做
  • 高端大气上档次的网站创建一个网站的费用
  • 深圳市住房和建设局网站怎么打不开了做的高大上的网站
  • 免费网站建站手机承接网站开发文案
  • 图书馆网站建设的作用网站用哪些系统做的比较好用
  • 北京住房建设部官方网站厦门网站制作案例
  • 旅游网站模板素材网站建设有哪几种形式
  • 济南免费网站制作公司网站内容规划
  • 去哪个网站找建筑图纸网络工程师证书报考条件
  • 男人和女人晚上做污污的视频大网站郑州男科
  • 做ae动图的网站深圳市住房和建设局门户网站