Language/Java

list 중복 item 제거

아르비스 2013. 2. 13. 11:18

List<String> uniqueidList = new ArrayList<String>(new HashSet<String>(idList));


hashSet 을 실행하면, 중복 ID를 제거한 unique 한 만 List 형으로 뽑을 수 있다.