日期字符串解析--SimpleDateFormat严格限制日期转换setLenient(false)

时间:2022-06-29 22:48:39

输入“33/12/2011”,用SimpleDateFormat parse()方法,转化为Date(2012,01,02).这样处理相当“33/12/2011”是正常输入,如果需要"33/12/2011”报错,即把"33/12/2011"当作错误格式,刚开始自己写了段逻辑判断:

把转成的日期再反转回来,再比较是否一致,即使用format方法再转换成字符串,和传入的那个串作比较,如果不相等,则证明传入的那个日期格式是错误的

  1. private String getDestDateStrFromSrcDateStr(String dateStr,
  2. String srcDateFormat, String descDateFormat)
  3. {
  4. try
  5. {
  6. final SimpleDateFormat src_sdf = new SimpleDateFormat(srcDateFormat);
  7. final Date date = src_sdf.parse(dateStr);
  8. //把转成的日期再反转回来,再比较是否一致
  9. if (srcDateFormat.length() != dateStr.length()
  10. || !dateStr.equals(src_sdf.format(date)))
  11. {
  12. LOGGER.error("the src date format is {} , but input the date string value is {}, input illegal",
  13. srcDateFormat,
  14. dateStr);
  15. throw new ParseMessageException(
  16. ErrorKeys.PAYMENT_AG_CONFIG_SERVICE_PARAM_VALIDATE_FAILED);
  17. }
  18. //把转成的date类型转换为目标格式日期字符串(yyyyMMdd)
  19. final SimpleDateFormat dest_sdf = new SimpleDateFormat(
  20. descDateFormat);
  21. LOGGER.info("the converted dest date str:{}"
  22. + dest_sdf.format(date));
  23. return dest_sdf.format(date);
  24. }
  25. catch (java.text.ParseException e)
  26. {
  27. LOGGER.error("the src date format is {} , but input the date string value is {}, input illegal",
  28. srcDateFormat,
  29. dateStr);
  30. throw new ParseMessageException(
  31. ErrorKeys.PAYMENT_AG_CONFIG_SERVICE_PARAM_VALIDATE_FAILED);
  32. }
  33. }

总觉得这种方法显得很笨拙,后来找找API,发现有一个方法:setLenient(false)可以直接使用。哎~何必费这么大劲呢

测试方法:

  1. import java.text.DateFormat;
  2. import java.text.ParseException;
  3. import java.text.SimpleDateFormat;
  4. import java.util.Date;
  5. public class DateTest {
  6. public static void main(String[] args) throws ParseException {
  7. DateFormat format = new SimpleDateFormat("dd/MM/yyyy");
  8. format.setLenient(false);
  9. Date date = format.parse("33/12/2011");
  10. System.out.println(date);
  11. }
  12. }

该方法的作用:

setLenient用于设置Calendar是否宽松解析字符串,如果为false,则严格解析;默认为true,宽松解析