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

Java日期时间字符串和毫秒相互转换的方法

程序员文章站 2023-12-02 20:19:22
本文内容大多基于官方文档和网上前辈经验总结,经过个人实践加以整理积累,仅供参考。 1、日期时间字符串转换成毫秒 @test public void test(...

本文内容大多基于官方文档和网上前辈经验总结,经过个人实践加以整理积累,仅供参考。

1、日期时间字符串转换成毫秒

@test
public void test() throws parseexception {
  string datetime = "2016-12-31 12:30:45 123";
  calendar calendar = calendar.getinstance();
  calendar.settime(new simpledateformat("yyyy-mm-dd hh:mm:ss sss").parse(datetime));
  system.out.println("日期[2016-12-31 12:30:45 123]对应毫秒:" + calendar.gettimeinmillis());
}


运行结果:

Java日期时间字符串和毫秒相互转换的方法

2、毫秒转换成日期时间字符串

@test
public void test() {
  long millisecond = 1483159625851l;
  date date = new date(millisecond);
  simpledateformat format = new simpledateformat("yyyy年mm月dd日 hh:mm:ss sss a");
  system.out.println("毫秒[1483159625851]对应日期时间字符串:" + format.format(date));
}

运行结果:

Java日期时间字符串和毫秒相互转换的方法

更多日期时间字符串格式请参考:java:simpledateformat

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