hutool 日期格式化
时间: 2023-07-08 17:45:41 浏览: 106
在使用Hutool进行日期格式化时,可以使用`DateUtil.format()`方法,该方法有两个参数,第一个参数是需要格式化的日期对象,第二个参数是格式化的模式字符串。
例如,将当前日期格式化为 yyyy-MM-dd HH:mm:ss 的字符串,可以使用以下代码:
```java
Date date = new Date();
String formattedDate = DateUtil.format(date, "yyyy-MM-dd HH:mm:ss");
System.out.println(formattedDate);
```
输出结果为:2021-07-19 14:25:30
相关问题
hutool日期格式化
使用Hutool进行日期格式化十分简单,只需要使用DateUtil.format方法即可:
```java
import cn.hutool.core.date.DateUtil;
public class Example {
public static void main(String[] args) {
// 获取当前日期
Date date = new Date();
// 将日期格式化为字符串
String strDate = DateUtil.format(date, "yyyy-MM-dd HH:mm:ss");
System.out.println(strDate);
}
}
```
以上代码将输出格式化后的当前日期,格式为:yyyy-MM-dd HH:mm:ss。
Hutool支持的日期格式化符号可以参考官方文档:https://www.hutool.cn/docs/#/core/%E6%97%A5%E6%9C%9F%E5%B7%A5%E5%85%B7/DateUtil?id=%e6%97%a5%e6%9c%9f%e6%a0%bc%e5%bc%8f%e5%8c%96
hutool 时间格式化类
Hutool是Java语言的工具库,其中也包含了时间格式化类。时间格式化类的主要作用是将Java中的Date对象或者long类型的时间戳转换为指定的日期格式的字符串。
Hutool中的时间格式化类是DateUtil,它提供了许多静态方法,可以方便地进行时间格式化操作。以下是一些常用的方法:
1. date():获取当前时间的Date对象。
2. parse():将字符串转换为Date对象。
3. format():将Date对象转换为指定格式的字符串。
4. formatDateTime():将Date对象转换为yyyy-MM-dd HH:mm:ss格式的字符串。
5. formatDate():将Date对象转换为yyyy-MM-dd格式的字符串。
6. formatTime():将Date对象转换为HH:mm:ss格式的字符串。
例如,将当前时间格式化为yyyy-MM-dd HH:mm:ss格式的字符串,可以使用以下代码:
```
String nowStr = DateUtil.formatDateTime(new Date());
```
需要注意的是,Hutool中的时间格式化类默认使用系统的时区进行时间转换,如果需要使用其他时区,可以使用TimeZone类进行设置。
阅读全文