判斷字串是否有重複
String[] jsidsz = jsids.split(",");
boolean flag=false;
for (int i = 0; i < jsidsz.length; i++) {
String temp=jsidsz[i];
int count=0;
for (int j = 0; j < jsidsz.length; j++) {
String temp2=jsidsz[j];
//有重複值就count+1
if(temp.equals(temp2)){
count++;
}
}
//由於中間又一次會跟自己本身比較所有這裡要判斷count>=2
if(count>=2){
flag=true;
}
}
if(flag){
writeJsMessage(response,"alert('為每個班指定考場時,有教室重複安排!');window.returnValue='ok';");
return null;
}