博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
scala处理日期
阅读量:6489 次
发布时间:2019-06-24

本文共 1322 字,大约阅读时间需要 4 分钟。

scala 日期处理

For processing dates, the Java Joda Time project is popular and well documented. A project named implements a Scala wrapper around Joda Time, and lets you write date expressions in a more Scala-like way, including these examples:

DateTime. now // returns org.joda.time.DateTimeDateTime. now + 2. monthsDateTime. nextMonth < DateTime. now + 2. months(2. hours + 45. minutes + 10. seconds). millis

如何引入依赖

com.github.nscala-time
nscala-time_2.10
2.0.0

代码示例

import com.github.nscala_time.time.Imports._object HelloWorld {  def main(args: Array[String]) {    println(DateTime.now + 2.months) // returns org.joda.time.DateTime = 2009-06-27T13:25:59.195-07:00    println(DateTime.nextMonth < DateTime.now + 2.months) // returns Boolean = true    println(DateTime.now to DateTime.tomorrow) // return org.joda.time.Interval = > 2009-04-27T13:47:14.840/2009-04-28T13:47:14.840    println((DateTime.now to DateTime.nextSecond).millis) // returns Long = 1000    println((2.hours + 45.minutes + 10.seconds))    // returns com.github.nscala_time.time.DurationBuilder    // (can be used as a Duration or as a Period)    println((2.hours + 45.minutes + 10.seconds).millis)    // returns Long = 9910000    println(2.months + 3.days)    // returns Period  }}

转载地址:http://wqouo.baihongyu.com/

你可能感兴趣的文章
模板模式
查看>>
配置yum为163的步骤
查看>>
Mongodb之权限认证管理
查看>>
在tomcat中设置网站别名
查看>>
Redis详解(四)
查看>>
Rman+crontab实现一周自动备份计划
查看>>
ps命令
查看>>
windows网络基础概念
查看>>
EXTJS4 之 TreePanel
查看>>
elasticsearch+logstash+kibana收集日志
查看>>
命令详解
查看>>
nginx负载均衡
查看>>
spring 依赖注入
查看>>
CentOS:Device eth0 does not seem to be present 问题解决方法
查看>>
大神Yann LeCun亲授:如何自学深度学习技术并少走弯路
查看>>
Crawler 不需要写代码的爬虫 不需要写正则的爬虫
查看>>
Exchange2010之接受域
查看>>
javaWeb--(1)初识javaWeb
查看>>
综合技术----同步、异步、阻塞与非阻塞的理解
查看>>
FineReport中树数据集如何实现组织树报表
查看>>