我正在尝试将 名称 的 子名称 的 > admin 值。
在这种情况下,
1 3/4 cups all-purpose flour
1/4 teaspoon baking soda and 1/2 cup of plain
8 teaspoons of baking powder
如果 名称 仅具有0个 admin 值,
1 cup brewed coffee
对于其余的 admin 值较小的数据,它们将存储到arraylistTWO中。
我被困在读取csv文件,我不知道如何将 Name 的 Sub Name em> 具有最高的 admin 值,而其余数据具有较小的 admin 值,我不知道如何存储到arraylistTWO中。
这是我到目前为止所做的工作:
try {
br = new BufferedReader (new FileReader ("/sdcard/TABLE_BF.csv"));
while ((sCurrentline = br.readLine ()) != null) {
subIng.add(sCurrentline.split (","));
}
arrSubIng = new String[subIng.size ()][];
subIng.toArray (arrSubIng);
} catch (IOException e) {
e.printStackTrace ();
}
答案 0 :(得分:0)
首先,我认为创建一个简单的类来保存数据是有意义的,因为使用对象而不是值数组进行过滤和排序将更加容易。
public class Ingredient {
String name;
String subName;
int status;
int admin;
public Ingredient(String name, String subName, String status, String admin) {
this.name = name;
this.subName = subName;
this.status = Integer.valueOf(status);
this.admin = Integer.valueOf(admin);
}
public String getName() {
return name;
}
public int getAdmin() {
return admin;
}
//more get and set methods here. I have only included what is needed for my answer
}
然后,您将阅读并创建Ingredient
对象的列表。
List<Ingredient> data = new ArrayList<>();
try {
String sCurrentline = null;
BufferedReader br = new BufferedReader(new FileReader("/sdcard/MAIN_BF.csv"));
while ((sCurrentline = br.readLine()) != null) {
String[] arr = sCurrentline.split(",");
Ingredient ingredient = new Ingredient(arr[0], arr[1], arr[2], arr[3]);
data.add(ingredient);
}
br.close();
} catch (IOException e) {
e.printStackTrace();
}
然后我们按名称将列表分组为Map
Map<String, List<Ingredient>> ingredientsByName = data.stream().collect(Collectors.groupingBy(Ingredient::getName));
然后在该地图上循环查找每种成分的最大管理员值,并将其添加到正确的列表中
List<Ingredient> main = new ArrayList<>();
List<Ingredient> other = new ArrayList<>();
//Sort on `admin` in descending order
Comparator<Ingredient> compartor = Comparator.comparing(Ingredient:: getAdmin, (i1, i2) -> {
if (i2 > i1) {
return -1;
} else if (i2 < i1) {
return 1;
}
return 0;
});
//Go through each list (ingredient) and find the one with max `admin` value
//and add it to the `main` list then add the rest to `other`
ingredientsByName.forEach( (k, group) -> {
Ingredient max = group.stream().max(compartor).get();
if (max.getAdmin() == 0) {
max = group.get(0);
}
main.add(max);
group.remove(max);
other.addAll(group);
});
答案 1 :(得分:-1)
我会将文件的全部内容加载到内存中,并将其存储在java.util.List<String>
中。然后,您可以按名称和 admin 对List
进行排序。然后只需遍历List
。每当您键入其他 Name 时,您就会知道其关联的 admin 值是最大的。因此,您可以将其添加到第一个ArrayList
中,并将所有其他添加到第二个ArrayList
中。