字符串日期转为时间

/**
* 字符串日期转为时间
*/
private Date StringDateToDate(String dateStr)
{
SimpleDateFormat formatDate = new SimpleDateFormat("yyyy-MM-dd hh:mm");
Date date = null;
try
{
date = formatDate.parse(dateStr);
} catch (ParseException e)
{
e.printStackTrace();
}
return date;
}

你可能感兴趣的:(字符串日期转为时间)