List 정렬

JAVA 2019. 2. 15. 14:29

List 정렬


@SuppressWarnings("unchecked")

public List listSort(List orgList) throws Exception {

if (orgList==null){

orgList.add("나" + "|" + "1231");

orgList.add("가" + "|" + "1232");

orgList.add("다" + "|" + "1233");

}

List resultList = new ArrayList();

Collections.sort(orgList); 

for (int i=0; i<orgList.size(); i++){

String[]  temp = orgList.get(i).toString().split("\\|");

if (temp!=null && temp.length>1){

HashMap map = new HashMap();

map.put("word", temp[0]);

map.put("idx", temp[1]);

resultList.add(map);

}

}

return resultList;

}

'JAVA' 카테고리의 다른 글

mac address  (0) 2019.02.15
Listener :: ServletContextListener  (0) 2019.02.15
[JAVA]JUnit 테스트 코드  (0) 2017.11.30
[JAVA]jsp 파일 읽어 저장  (0) 2017.11.30
[JAVA] jndi2  (0) 2017.11.28
블로그 이미지

마크제이콥스

초보 개발자의 이슈및 공부 내용 정리 블로그 입니다.

,