我正在从 csv 文件加载一个 String 并尝试用它创建一个 int 数组。问题是我一直遇到NumberFormatException当程序""在 String 数组中找到 a 时抛出的 a 。
我不需要那些空字符串,我只需要整数。
有没有办法避免用空字符串替换字符?
aLine = aLine.replaceAll(" ", "").replaceFirst(",", "");
aLine = aLine.replace(name, "").replaceAll("\"", "");
final String[] strScores = aLine.split(",");
final int[] scores = Arrays.stream(strScores)
.mapToInt(Integer::parseInt).toArray();
紫衣仙女
繁华开满天机
相关分类