I am using CsvReader library and want to read a specific row from a csv file in java. Sample csv :
**Name**, **Address**, **Email-Id**
student, studentaddress, [email protected]
student2, student2address, [email protected]
employee, employeeaddres1, [email protected]
I want to read the row where name is 'student2'. Could you please provide a solution?
Thanks in advance.