要格式化日期使用Java DateUtils,可以使用SimpleDateFormat類來指定日期格式。以下是一個(gè)示例代碼:
import org.apache.commons.lang3.time.DateUtils;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] args) {
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = sdf.format(date);
System.out.println("Formatted date: " + formattedDate);
}
}
在這個(gè)例子中,我們使用SimpleDateFormat類來創(chuàng)建一個(gè)日期格式化對(duì)象,并指定日期格式為"yyyy-MM-dd HH:mm:ss"。然后我們調(diào)用format方法來格式化日期,并將結(jié)果打印出來。
另外,如果你想使用Apache Commons DateUtils類來格式化日期,可以使用DateUtils.formatDate方法:
import org.apache.commons.lang3.time.DateUtils;
import java.util.Date;
public class Main {
public static void main(String[] args) {
Date date = new Date();
String formattedDate = DateUtils.formatDate(date, "yyyy-MM-dd HH:mm:ss");
System.out.println("Formatted date: " + formattedDate);
}
}
這種方法同樣可以格式化日期,只是使用了Apache Commons DateUtils類中的formatDate方法。