📄 dateutil.java
字号:
/* * Created on Mar 29, 2005 * */package org.placelab.util;import java.text.SimpleDateFormat;import java.util.Date;public class DateUtil { // you'd think this would be a straightforward thing the // Date class could do, but no ... public static String dateToString(Date date, String pattern) { SimpleDateFormat sdf = new SimpleDateFormat(pattern); return sdf.format(date); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -