码迷,mamicode.com
首页 > 其他好文 > 详细

Data工具类(转换)

时间:2015-03-11 17:14:36      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

	public static String DateToString(Date tempDate) {
		String date_str = "";
		SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); // 规定日期格式
		try {
			date_str = formatter.format(tempDate);
		} catch (Exception ex) {
			date_str = "";
		}
		return date_str;
	}

	/**
	 * 把String转换成Date,形式为yyyy-MM-dd HH:mm:ss
	 */
	public static Date StringToDate(String dateStr) {
		SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); // 规定日期格式
		long long_temp = 0;
		Date tempDate;
		try {
			long_temp = formatter.parse(dateStr).getTime();// 先转换成long型
			tempDate = new Date(long_temp); // 在转换成Date型
		} catch (Exception ex) {
			tempDate = null;
		}
		return tempDate;
	}
注释 都有基本不难,项目中都会用到

Data工具类(转换)

标签:

原文地址:http://blog.csdn.net/u010982856/article/details/44200461

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!