我试图理解两件事:
- 为什么下面的代码不抛出异常(因为
SimpleDateFormat
不宽容) - 它没有抛出异常,但是为什么将年份解析为 0013 (而不是使用此处的规则,即从今天开始的 +80:-20 年规则)
这是代码
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
public class TestDate {
public static void main(String[] args) throws Exception {
SimpleDateFormat format = new SimpleDateFormat("dd/MM/yyyy");
format.setLenient(false);
Date date = format.parse("01/01/13"); // Since this only has a 2 digit year, I would expect an exception to be thrown
System.out.println(date); // Prints Sun Jan 01 00:00:00 GMT 13
Calendar cal = Calendar.getInstance();
cal.setTime(date);
System.out.println(cal.get(Calendar.YEAR)); // Prints 13
}
}
如果它有所作为,我在 Ubuntu 上使用 java 1.6.0_38-b05