android List去掉重複數據

今天用數據庫獲取數據發現有個字段的數據重複了,因而就寫了下面這個方法去除重複的數據。數據庫  public static List<String> removeDuplicate(List<String> list)spa {        Set set = new LinkedHashSet<String>();         set.addAll(list);         list.c
相關文章
相關標籤/搜索