你给我讲讲SimpleDateFormat如何格式化成时分秒
时间: 2023-11-22 12:53:31 浏览: 76
SimpleDateFormat格式化日期
SimpleDateFormat可以使用特定的格式化符号将日期时间格式化成所需的字符串格式。如果需要将时间格式化成时分秒的格式,可以使用以下格式化符号:
- HH:表示24小时制的小时数,例如:01、12、23。
- mm:表示分钟数,例如:05、30、59。
- ss:表示秒数,例如:02、15、59。
举个例子,如果需要将当前时间格式化成时分秒的格式,可以使用以下代码:
```
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
String formattedTime = sdf.format(new Date());
System.out.println("Formatted time: " + formattedTime);
```
输出结果类似于:
```
Formatted time: 14:30:45
```
这样就将当前时间格式化成了时分秒的格式。
阅读全文