我正在尝试匹配文件前缀是否与我的对象匹配,但我得到了一个 classcastexception
for (int i=0;i<files.length;i++)
{
File f= files[i];
String s=listeClients.get(i).getShortname();
if(f.getName().startsWith(s))
{
System.out.println("file: " + f.getName());
}
}
我将一个字符串传递给 startwith 方法,所以我不明白为什么会出现此错误:
Caused by: java.lang.ClassCastException: java.lang.Boolean cannot be cast to com.dev.pojo.Clients
非常感谢你