格式化String类型数据,并转换成Date类型输出
public class FormatStringToDate {
//将String类型的数据格式化为yyyy-MM-dd
public Date formatString(String str) throws ParseException {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
return simpleDateFormat.parse(str);
}
public Date formatString1(String str) throws ParseException {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
return simpleDateFormat.parse(str);
}
public Date formatString2(String str) throws ParseException {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss:SS");
return simpleDateFormat.parse(str);
}
public Date formatString3(String str) throws ParseException {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy/MM/dd");
return simpleDateFormat.parse(str);
}
public Date formatString4(String str) throws ParseException {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy/MM/dd hh:mm:ss");
return simpleDateFormat.parse(str);
}
public Date formatString5(String str) throws ParseException {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy/MM//dd hh:mm:ss:SS");
return simpleDateFormat.parse(str);
}
public Date formatString6(String str) throws ParseException {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("hh:mm:ss");
return simpleDateFormat.parse(str);
}
}