欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

时间格式转化

程序员文章站 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;
	}
}

 

相关标签: 时间格式转换