A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. public class Person {
  2.         private String name;
  3.         private int age;
  4.         private String address;
  5.         private Date birthday;
  6.         public String getName() {
  7.                 return name;
  8.         }
  9.         public void setName(String name) {
  10.                 this.name = name;
  11.         }
  12.         public int getAge() {
  13.                 return age;
  14.         }
  15.         public void setAge(int age) {
  16.                 this.age = age;
  17.         }
  18.         public String getAddress() {
  19.                 return address;
  20.         }
  21.         public void setAddress(String address) {
  22.                 this.address = address;
  23.         }
  24.         public Date getBirthday() {
  25.                 return birthday;
  26.         }
  27.         public void setBirthday(Date birthday) {
  28.                 this.birthday = birthday;
  29.         }
  30. }
复制代码

这是Person类
  1. public class Test1 {
  2.         String name="cang";
  3.         String age="23";
  4.         String birthday="1992-10-03";
  5.         String address="BeiJing";
  6.         Person p=new Person();
  7.        @Test
  8.         public void test1() throws IllegalAccessException, InvocationTargetException
  9.         {
  10.                 ConvertUtils.register(new Converter() {
  11.                        
  12.                         @Override
  13.                         public Object convert(Class type, Object value) {
  14.                                 if(value==null)
  15.                                         return null;
  16.                                 if(!(value instanceof String))
  17.                                         throw new ConversionException("只支持String类型!!!");
  18.                                 if(((String) value).trim().equals(""))
  19.                                         return null;
  20.                                 SimpleDateFormat dateFormat=new SimpleDateFormat();
  21.                                 Date birth;
  22.                                 try {
  23.                                         birth = dateFormat.parse((String) value);
  24.                                 } catch (ParseException e) {
  25.                                         throw new RuntimeException(e);
  26.                                 }
  27.                                 return birth;
  28.                         }
  29.                 }, Date.class);
  30.                 String line_separator=System.getProperty("line_separator");
  31.                 BeanUtils.setProperty(p, "name", name);
  32.                 BeanUtils.setProperty(p, "age", age);//只是支持8种基本类型之间的转换
  33.                 BeanUtils.setProperty(p, "birthday", birthday);//如果想让string型转成Date需要给beanUtils一个转换器
  34.                 BeanUtils.setProperty(p, "address", address);
  35.                
  36.                 System.out.println(p.getName()+line_separator+p.getAge()+line_separator+p.getBirthday()+line_separator+p.getAddress()
  37.                                 );
  38.         }
  39. }
复制代码

运行就报了我帖子题目的错误:
错误的提示是:
java.lang.RuntimeException: java.text.ParseException: Unparseable date: "1992-10-03"
        at chj.beanutils.Test1$1.convert(Test1.java:67)
        at org.apache.commons.beanutils.ConvertUtilsBean.convert(ConvertUtilsBean.java:428)
        at org.apache.commons.beanutils.BeanUtilsBean.setProperty(BeanUtilsBean.java:1002)
        at org.apache.commons.beanutils.BeanUtils.setProperty(BeanUtils.java:313)
        at chj.beanutils.Test1.test1(Test1.java:75)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        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.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
        at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31)
        at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:73)
        at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:46)
        at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:180)
        at org.junit.runners.ParentRunner.access$000(ParentRunner.java:41)
        at org.junit.runners.ParentRunner$1.evaluate(ParentRunner.java:173)
        at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
        at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31)
        at org.junit.runners.ParentRunner.run(ParentRunner.java:220)
        at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:46)
        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: "1992-10-03"
        at java.text.DateFormat.parse(DateFormat.java:337)
        at chj.beanutils.Test1$1.convert(Test1.java:65)
        ... 28 more

5 个回复

倒序浏览
5555555 没人回复啊  :'(
回复 使用道具 举报
你这个是添加个人信息吧
回复 使用道具 举报
你的匿名内部类是干嘛的。。而且匿名内部类的后面“}, Date.class);”这格式没看懂。
回复 使用道具 举报
Alan_Kwan 发表于 2014-5-28 18:47
你的匿名内部类是干嘛的。。而且匿名内部类的后面“}, Date.class);”这格式没看懂。 ...

ConvertUtils.register(converter, clazz),converter是Converter接口对象,然后我写了一个匿名内部类,是一个转换器,把String转换成Date的
回复 使用道具 举报
TS__likewise 发表于 2014-5-28 18:38
你这个是添加个人信息吧

恩恩 然后转换类型的 把String转换成Date
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马