ファイルプレフィックスがオブジェクトと一致するかどうかを一致させようとしていますが、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
どうもありがとうございます