메뉴 건너뛰기

Bigdata, Semantic IoT, Hadoop, NoSQL

Bigdata, 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;

A personal place to organize information learned during the development of such Hadoop, Hive, Hbase, Semantic IoT, etc.
We are open to the required minutes. Please send inquiries to gooper@gooper.com.

위로