时间格式转化
程序员文章站
2022-04-03 22:25:11
...
代码实现
public class DateUtil {
/**
* 日期java.util.Date转字符串,格式为“yyyy-MM-dd”
* @param date
* @return
*/
public static String DateToString(Date date){
String tempDate = null;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
if(date != null){
tempDate = sdf.format(date);
}
return tempDate;
}
/**
* 日期java.util.Date转字符串,格式为自定义
* @param date
* @param format
* @return
*/
public static String DateToString(Date date,String format){
String tempDate = null;
SimpleDateFormat sdf = new SimpleDateFormat(format);
if(date != null){
tempDate = sdf.format(date);
}
return tempDate;
}
/**
* 日期字符串转java.util.Date类型,格式为"yyyy-MM-dd"
* @param date
* @return
*/
public static Date StringToDate(String date){
Date tempDate = null;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
if(date != null){
try {
tempDate = sdf.parse(date);
} catch (ParseException e) {
e.printStackTrace();
}
}
return tempDate;
}
}
上一篇: 内容型网站实现盈利的6种方法