我正在使用CsvReader库,想从Java中的csv文件读取特定行。
范例csv:**Name**, **Address**, **Email-Id**student, studentaddress, [email protected], student2address, [email protected], employeeaddres1, [email protected]

我想读取名称为“student2”的行。
您能提供一个解决方案吗?

提前致谢。

最佳答案

由于行的字节大小不同,并且CSV格式不包含索引,因此不能将random access直接添加到一行。

因此,您必须阅读所有先例行,然后简单地跳过它们,直到找到所需的行为止。

07-27 17:52