java 定时器的时间格式采用 simple date format (sdf) 模式,其中字母分别表示日期和时间组件,如年、月、日、小时、分钟等。例如:"yyyy-mm-dd hh:mm:ss" 表示 "2023-03-08 15:32:10",其中 "hh:mm:ss" 表示时间为 "15:32:10"。使用 sdf 需要创建一个模型 simpledateformat 并使用对象 format() 格式化日期或时间的方法。
Java 定时器时间格式
Java 定时器中的时间格式遵循Simple Date Format (SDF) 该模式指定了表示日期和时间的方式。
一个 SDF 该模式由一系列字母组成,每个字母代表日期或时间的一部分。以下是常用字母:
- 年: y(年)、Y(年,四位)
- 月: M(月)、L(月,01 到 12)
- 日: d(日)、D(日,01 到 31)
- 小时: h(12 小时制)、H(24 小时制)
- 分钟: m
- 秒: s
- 毫秒: S
- 星期: F(周全称)、E(星期缩写)
示例:
立即学习“Java免费学习笔记(深入);
- "yyyy-MM-dd HH:mm:ss" 表示日期和时间,格式为 "2023-03-08 15:32:10"
- "HH:mm:ss" 表示时间,格式为 "15:32:10"
- "yyyy-MM-dd" 表示日期,格式为 "2023-03-08"
使用 SDF 模式
要在 Java 中使用 SDF 你需要创建一个模型 SimpleDateFormat 对象,并使用对象 format() 格式化日期或时间的方法。
import java.text.SimpleDateFormat; import java.util.Date; public class TimerTimeFormat { public static void main(String[] args) { // 创建一个 SDF 对象 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); // 使用 sdf 对象格式化日期 Date date = new Date(); String formattedDate = sdf.format(date); // 印刷格式化后的日期 System.out.println(formattedDate); } }
输出:
2023-03-08 15:32:10
以上是java定时器时间格式的详细内容,请关注图灵教育的其他相关文章!