你可以参考一下
public Date parse(String source) throws ParseException
{
ParsePosition pos = new ParsePosition(0);
Date result = parse(source, pos);
if (pos.index == 0)
throw new ParseException("Unparseable date: \"" + source + "\"" ,
pos.errorIndex);
return result;
}
这个方法有抛出一个异常。要对异常进行处理。
比如:
try
{
sdf.parse("*****");
}
catch(ParseException e)
{
e.printStackTrace();
}
或者用SimpleDateFormat sdf=new SimpleDateFormat("yyyy-mm-dd"); |