안드로이드 ArrayList 중복 제거하기
프로그래밍/Android (Java)2020. 12. 4. 16:50
반응형
String[] goodsList = {"notebook", "TV", "monitor", "keyboard", "mouse", "TV", "monitor", "keyboard"};
ArrayList<String> arrayList = new ArrayList<>();
for(String item : goodsList){
if(!arrayList.contains(item))
arrayList.add(item);
}
System.out.println(arrayList);
* 결과 = [notebook, TV, monitor, keyboard, mouse]
[출처] https://lnsideout.tistory.com/entry/JAVA-%EC%9E%90%EB%B0%94-%EB%B0%B0%EC%97%B4-ArrayList-%EC%A4%91%EB%B3%B5%EC%A0%9C%EA%B1%B0-%EB%AA%A8%EB%93%A0%EB%B0%A9%EB%B2%95
반응형
'프로그래밍 > Android (Java)' 카테고리의 다른 글
[Android, Java] String 클래스에서의 특수문자 인식 (0) | 2020.12.11 |
---|---|
TextView 터치 이벤트 발생 시키기 (0) | 2020.12.08 |
앱 프로세스 완전 종료하기 (0) | 2020.12.04 |
adb shell 을 통한 명령어 실행하기 (0) | 2020.11.27 |
안드로이드 맥어드레스 (MAC Address) 정보 가져오기 (0) | 2020.11.26 |
댓글()