时间字符串转化Date


//从时间字符串转化为date类型
public static Date strToDate(String src, String format)
{
//format =  "yyyyMMddHHmm" 等等类型

if (src.length() != format.length())
return null;

SimpleDateFormat dateFormat = new SimpleDateFormat(format);
dateFormat.setLenient(false);

try
{
Date date = dateFormat.parse(src);
return date;
}
catch(Exception e)
{
return null;
}
}

你可能感兴趣的:(Date)