我需要验证字符串是否为ISODateTimeFormat.dateTimeNoMillis()格式。
final DateTimeFormatter dateHourMinuteSecondFormatter =ISODateTimeFormat.dateTimeNoMillis();
String s = "2012-W12-12";
try {
dateHourMinuteSecondFormatter.parseDateTime(s);
} catch (IllegalArgumentException e) {
e.setMessage("exception thrown);
}
应该在日期格式错误时抛出异常,但事实并非如此。还有什么需要我补充的吗?
不,你什么也不用做了。
我怀疑实际上它是抛出示例,但是您的消息诊断不正确。这对我来说肯定是失败的,使用Joda Time 2.1:
import org.joda.time.*;
import org.joda.time.format.*;
public class Test {
public static void main(String[] args) throws Exception {
DateTimeFormatter formatter = ISODateTimeFormat.dateTimeNoMillis();
String s = "2012-W12-12";
try {
DateTime dt = formatter.parseDateTime(s);
System.out.println(dt);
} catch (IllegalArgumentException e) {
System.out.println(e);
}
}
}
输出:java.lang.IllegalArgumentException: Invalid format: "2012-W12-12" is malformed
at "W12-12"