我在设置名称时遇到强制转换异常。
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
答案 0 :(得分:2)
所以没有人打扰阅读异常消息?
[Ljava.lang.Object; cannot be cast to java.lang.String
前导[
表示该类是数组类。
你得到的是:
row.setName(((String) customers)[0]+" "+((String) customers)[1]);
Cast优先于数组索引。
答案 1 :(得分:-1)
尝试使用它
customer[0].toString()