首页 > Java

java字符串转换成日期

发表于2014-07-14 19:09:49| --次阅读| 来源webkfa| 作者小豆豆

摘要:只需传格式就行"yyyy-MM-dd HH:mm:ss" "yyyy-MM-dd"
java代码
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Test {
	/**
	 * 字符串转换成日期
	 * 
	 * @param str
	 * @param formatStr
	 *            "yyyy-MM-dd HH:mm:ss" "yyyy-MM-dd"
	 * @return date
	 */
	public static Date StrToDate(String str, String formatStr) {
		if (formatStr==null || "".equals(formatStr)) {
			formatStr = "yyyy-MM-dd";
		}
		SimpleDateFormat format = new SimpleDateFormat(formatStr);
		Date date = null;
		try {
			date = format.parse(str);
		} catch (ParseException e) {
			e.printStackTrace();
		}
		return date;
	}
	public static void main(String[] args){
		Date dat = StrToDate("2018-07-22","yyyy-MM-dd");
		System.out.println(dat.toLocaleString());
	}
}

相关文章

猜你喜欢

学到老在线代码浏览器 关闭浏览
友情链接: hao123 360导航 搜狗网址导航 114啦网址导航 博客大全
Copyright © 1999-2014, WEBKFA.COM, All Rights Reserved  京ICP备14034497号-1