Convert CSV to JSON using Talend Open Studio for Data Integration
I have the below CSV file format: title studentName studentID Science 'James','Jones' 'JA002','JO101' I want to convert this to the below JSON format: [{ "title": "Science", "students":[ { "studentname":"John", "studentid":"JO12" }, { "studentname":"James", "studentid":"JA23" } ] }] How can I…