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