怎么把String类型的数据转换成Date格式
发布网友
发布时间:2022-05-26 10:07
我来回答
共2个回答
热心网友
时间:2023-10-12 10:39
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();
}
热心网友
时间:2023-10-12 10:40
用SimpleDateFormat sdf=new SimpleDateFormat("yyyy-mm-dd");