我的传入数据将包含字符串中的日期,我应将其格式化为以下格式“dd / MM / yyyy”。我能够将日期转换为正确的格式:
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy"); //New Format
SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/MM/dd"); //old format
String dateInString = "2013/10/07" //string might be in different format
try{
Date date = sdf2.parse(dateInString);
System.out.println(sdf.format(date));
}
catch (ParseException e){
e.printStackTrace();
}
但是,我有不同格式的字符串,例如2013年10月7日,2013年10月7日,10/07/2013,7月13日。如何在单独格式化之前对它们进行比较?
我发现这个Check date format before parsing非常相似,但我无法理解。
谢谢。
答案 0 :(得分:0)
我会创建一个实用程序类,其中包含所有支持格式的列表以及尝试将给定String
对象转换为Date
的方法。
public class DateUtil {
private static List<SimpleDateFormat> dateFormats;
static {
dateFormats = new ArrayList<SimpleDateFormat>();
dateFormats.add(new SimpleDateFormat("yyyy/MM/dd"));
dateFormats.add(new SimpleDateFormat("dd/M/yyyy"));
dateFormats.add(new SimpleDateFormat("dd/MM/yyyy"));
dateFormats.add(new SimpleDateFormat("dd-MMM-yyyy"));
// add more, if needed.
}
public static Date convertToDate(String input) throws Exception {
Date result = null;
if (input == null) {
return null; // or throw an Exception, if you wish
}
for (SimpleDateFormat sdf : dateFormats) {
try {
result = sdf.parse(input);
} catch (ParseException e) {
//caught if the format doesn't match the given input String
}
if (result != null) {
break;
}
}
if (result == null) {
throw new Exception("The provided date is not of supported format");
}
return result;
}
}