String birthday = e.attributeValue("birthday");
System.out.println(birthday);
if (birthday == null||"".equals(birthday)) {
user.setBirthday(null);
}else {
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
try {
user.setBirthday(df.parse(birthday));
} catch (ParseException e1) {

throw new RuntimeException(e1);
}
}程序片段问题:报错 说 
java.lang.RuntimeException: java.text.ParseException: Unparseable date: "Sat Apr 20 21:49:37 CST 2013"
at com.exmple.dao.impl.UserDaoImpl.find(UserDaoImpl.java:107)
at com.exmaple.service.impl.BusinessServiceImpl.register(BusinessServiceImpl.java:25)
at junit.test.BusinessServiceTest.testRegister(BusinessServiceTest.java:28)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4ClassRunner.java:79)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:71)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:49)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
Caused by: java.text.ParseException: Unparseable date: "Sat Apr 20 21:49:37 CST 2013"
at java.text.DateFormat.parse(Unknown Source)
at com.exmple.dao.impl.UserDaoImpl.find(UserDaoImpl.java:104)
... 25 more打印了一下birthday
Sat Apr 20 21:49:37 CST 2013不知道问题出现在哪了????
求教!谢谢!JavaJUnitDate

解决方案 »

  1.   

    birthday是字符串要解析两次。 String date = "Wed Aug 01 00:00:00 CST 2012";
        
        SimpleDateFormat sdf = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy",Locale.US);
        
        Date d=sdf.parse(date);    sdf=new SimpleDateFormat("yyyyMMdd");    System.out.println(sdf.format(d));
      

  2.   

    String birthday = e.attributeValue("birthday");
    System.out.println(birthday);
    if (birthday == null||"".equals(birthday)) {
    user.setBirthday(null);
    }else {
    SimpleDateFormat df = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy");
    try {
    user.setBirthday(df.parse(birthday));
    } catch (ParseException e1) {

    throw new RuntimeException(e1);
    }
    }