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

Scala时间格式转换

程序员文章站 2022-04-03 22:28:22
...

本博客转自:https://blog.csdn.net/Neleuska/article/details/78864845

scala中关于时间格式的转换问题,总结为以下三种常用情况:


1、时间字符类型转Date类型

  1. import java.text.SimpleDateFormat
  2. val time = "2017-12-18 00:01:56"
  3. val newtime :Date = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(time)
  4. println(newtime)
  5. //output:Mon Dec 18 00:01:56 CST 2017

2、Long类型转字符类型

  1. val time:Long= 1513839667//秒
  2. val newtime :String = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(time*1000)
  3. println(newtime)
  4. //output:2017-12-21 15:01:07

3、时间字符类型转Long类型

  1. val time = "2017-12-18 00:01:56"
  2. val newtime :Long= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(time).getTime
  3. println(newtime)
  4. //output:1513526516000


相关标签: 时间格式转换