728x90
반응형
// 화면에서 받아온 번호리스트에서 같은 번호 제외하고 카운트
int tempArtnumListCnt = 0;
String tempArtnum = "";
for(String artnum: artnumList){
if(!tempArtnum.equals(artnum)){
tempArtnumListCnt++;
tempArtnum = artnum;
}
}
logger.debug("artnumListCnt ==" + tempArtnumListCnt);
String artnumListCnt = Integer.toString(tempArtnumListCnt);
728x90
반응형