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

java获取时间的方法总结

程序员文章站 2023-12-16 10:54:34
一、获取当前时间,   格式为:   yyyy-mm-dd   hh-mm-ss dateformat.getd...

一、获取当前时间,   格式为:   yyyy-mm-dd   hh-mm-ss
dateformat.getdatetimeinstance(2, 2, locale.chinese).format(new java.util.date());

二、获取当前时间,   格式为:   yyyy年mm月dd日   上午/下午hh时mm分ss秒
dateformat.getdatetimeinstance(dateformat.long, dateformat.long,   locale.chinese).format(new java.util.date());

三、获取当前时间(精确到毫秒),   格式为:   yyyy-mm-dd   hh:mm:ss.nnn
new java.sql.timestamp(system.currenttimemillis()).tostring();

上一篇:

下一篇: