Hi All,
I have a CSV file with a header and data rows.
Is there any way that I can read the row and set the values to a DTO object using Java?
Ex:
CSV Header --> Id Division Rank Salary
CSV Rows --> 100 12 1 1000
How can I set this to my DTO Object
public class CSVDto{
public String division;
public String rank;
public String salary;
<getter , setters>
}
Thanks
Kiran