android List去掉重复数据

今天用数据库获取数据发现有个字段的数据重复了,因而就写了下面这个方法去除重复的数据。数据库  public static List<String> removeDuplicate(List<String> list)spa {        Set set = new LinkedHashSet<String>();         set.addAll(list);         list.c
相关文章
相关标签/搜索