메뉴 건너뛰기

Cloudera, BigData, Semantic IoT, Hadoop, NoSQL

Cloudera CDH/CDP 및 Hadoop EcoSystem, Semantic IoT등의 개발/운영 기술을 정리합니다. gooper@gooper.com로 문의 주세요.


//중복제거 대상 변수
List<Map<String, String>> returnList = new ArrayList<Map<String, String>>();

// HashSet 데이터 형태로 생성되면서 중복 제거됨
HashSet<Map<String,String>> hs = new HashSet<Map<String, String>>(returnList);

// ArrayList 형태로 다시 생성
ArrayList<Map<String, String>> returnList2 = new ArrayList<Map<String, String>>(hs);

return returnList2;
번호 제목 날짜 조회 수
33 Class.forName을 이용한 메서드 호출 샘플소스 2016.12.21 465
» List<Map<String, String>>형태의 데이타에서 중복제거 하는 방법 2016.12.23 2046
31 [tomcat] logrotate를 이용하여 catalina.out로그파일 일별로 로테이션 저장하기 file 2017.01.18 494
30 [springframework]Caused by: org.mariadb.jdbc.internal.util.dao.QueryException: Could not read resultset: unexpected end of stream, read 0 bytes from 4 오류 발생시 조치사항 2017.01.23 842
29 [메모리 덤프파일 분석] 2017.03.31 262
28 [jsoup]Jsoup Tutorial 2017.04.11 256
27 [Jsoup]특정페이지를 jsoup을 이용하여 파싱하는 샘플소스 2017.04.18 416
26 python test.py실행시 "ImportError: No module named pyspark" 혹은 "ImportError: No module named py4j.protocol"등의 오류 발생시 조치사항 2017.07.04 869
25 python3.5에서 numpy버젼에 따른 문제점을 조치하는 방법및 pymysql import할때 오류 발생시 조치사항 2017.09.28 424
24 lagom의 online-auction-java프로젝트 실행시 "Could not find Cassandra contact points, due to: ServiceLocator is not bound" 경고 발생시 조치사항 2017.10.12 280
23 lagom-linux용 build.sbt파일 내용 2017.10.12 1417
22 lagom-windows용 build.sbt파일 내용 2017.10.12 178
21 [gson]mongodb의 api를 이용하여 데이타를 가져올때 "com.google.gson.stream.MalformedJsonException: Unterminated object at line..." 오류발생시 조치사항 2017.12.11 4807
20 Lagom프레임웍에서 제공하는 HelloWorld 테스트를 수행시 [unknown-version]오류가 발생하면서 빌드가 되지 않는 경우 조치사항 2017.12.22 273
19 windows7에서 lagom의 hello world를 빌드하여 실행하는 경우의 로그(mvn lagom:runAll -Dscala.binary.version=2.11) 2017.12.22 289
18 lagom에서 제공하는 초기 생성기능을 이용하여 생성한 프로젝트의 소스 파악 2018.01.16 566
17 Lagom에서 제공하는 Maven을 이용한 Hello프로젝트 자동생성 및 실행 2018.01.19 244
16 maven을 이용하여 Hello world 서비스 자동 생성시 HelloServiceImpl.java에서 사용하는 getMessage() 와 getName() 이 정의되지 않은 오류가 발생시 조치방법 2018.01.19 441
15 jdk 9이상 사용하려면 repository를 아래와 같이 지정해야한다. 2019.06.02 197
14 scala-eclipse 다운로드 2019.06.09 299
위로