要格式化日期使用Java DateUtils,可以使用SimpleDateFormat类来指定日期格式。以下是一个示例代码:
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); } }
在这个例子中,我们使用SimpleDateFormat类来创建一个日期格式化对象,并指定日期格式为"yyyy-MM-dd HH:mm:ss"。然后我们调用format方法来格式化日期,并将结果打印出来。
另外,如果你想使用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方法。