如何对具有类似元素的arraylist进行排序
02112-S1530
02112-S1529
02112-S1531
按升序排列。
我正在使用 Collection.sort(列表名称);
但得到输出
02112-S1531
02112-S1529
02112-S1530
预期输出为:
02112-S1529
02112-S1530
02112-S1531
我喜欢
List<String> gbosIdsList = new ArrayList<String>();
gbosIdsList.add("02112-S1530");
gbosIdsList.add("02112-S1529");
gbosIdsList.add("02112-S1531");
Collections.sort(gbosIdsList);
Iterator itr = gbosIdsList.iterator();
while(itr.hasNext()){
System.out.println(itr.next());
}