public List removeDuplicateWithOrder(ArrayList arlList) {
HashSet set = new HashSet();
List newList = new ArrayList();
for (Iterator iter = arlList.iterator(); iter.hasNext(); ) {
Object element = iter.next();
if (set.add(element)) newList.add(element);
}
arlList.clear();
arlList.addAll(newList);
return arlList;
}
'Work > java' 카테고리의 다른 글
java에서 sqlite3 JDBC 사용하는 법 (0) | 2013.11.22 |
---|---|
DEBUG POP3: server doesn't support TOP, disabling it (0) | 2013.10.14 |
java IP to Long 변환 유틸 (0) | 2013.06.20 |
jxl을 이용한 엑셀 파일에 그림 파일 첨부 하기 (0) | 2013.05.27 |
CentOs OpenOffice 설치 및 서버 실행 (0) | 2011.12.07 |