我正在尝试使用Set Interface从String类型的List对象中删除重复项,但我面临的问题是它还重新排序我的列表,这是我不想要的。我想保留列表的顺序并仅删除重复项?
static List<String> StopNames = new ArrayList<String>();
StopNames.add(sCurrentLine);
Set<String> set = new HashSet<String>(StopNames);
for (String string : set) {
System.out.println("Printing Set "+string);
}
答案 0 :(得分:7)
只需为HashSet
切换LinkedHashSet
,即可在删除重复项时保留广告订单。