- Map可用TreeMap 自动[]排序
- List 可用Collections.sort方法实现
Collections.sort(allCompanys,new Comparator
(){ public int compare(PrpLremoteLook p1,PrpLremoteLook p2){ if(Integer.parseInt(p1.getComCode())>Integer.parseInt(p2.getComCode())){ return 1; }else{ return 0; } } });