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, student@email.com
student2, student2address, student2@email.com
employee, employeeaddres1, employee@email.com
I want to read the row where name is 'student2'. Could you please provide a solution?
Thanks in advance.
