设置名称时类强制转换异常

时间:2014-08-12 16:24:06

标签: java

我在设置名称时遇到强制转换异常。

        Object[] customers= customerRepository.getCustomerName(Id);     
        Customer row = new Customer();          
        row.setName((String) customers[0]+" "+(String) customers[1]);            

例外是:

HTTP Status 500 - Request processing failed; 
nested exception is java.lang.ClassCastException: 
[Ljava.lang.Object; cannot be cast to java.lang.String

1 个答案:

答案 0 :(得分:1)

你得到的是:

  row.setName(((String) customers)[0]+" "+((String) customers)[1]);

Cast优先于数组索引。

线索是消息[Ljava.lang.Object; cannot be cast to java.lang.String

前导[表示该类是数组类。