gpt4 book ai didi

java - 如何在读取 csv 文件时跳过重复行?

转载 作者:行者123 更新时间:2023-12-02 01:45:04 25 4
gpt4 key购买 nike

我需要跳过 csv 文件中的重复项,并需要将原始值插入我的沙发数据库中。这是我的代码。

public class Json {
public List<User> jsonConvert()
throws JsonGenerationException, JsonMappingException, IOException {
File input = new File("C:\\Users\\SwedhaS\\Documents\\SametimeFileTransfers\\newPIRs.csv");

Pattern pattern = Pattern.compile(",");

try (BufferedReader in = new BufferedReader(new FileReader(input));) {
List<User> users = in
.lines()
.skip(1)
.<User>map(line -> {
String[]x = new String[6];
x = pattern.split(line);
return new User(x);
}).collect(Collectors.toList());

ObjectMapper mapper = new ObjectMapper();
mapper.enable(SerializationFeature.INDENT_OUTPUT);
mapper.writeValue(System.out, users);

return users;
}
}
}

最佳答案

我相信您正在尝试从用户列表中删除重复项,对吗?

为此,如果您还想保留顺序,可以使用 HashSet,它会自动删除重复项:

Set<String> usersSet = new LinkedHashSet<>(users);

关于java - 如何在读取 csv 文件时跳过重复行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53814316/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com