I need help with csv, I only started learning how to use it yesterday, and I can't find a solution for that problem. I have a csv file with some array: "name, address, id", using Opencsv. Now I want to be able to add corresponded strings in the row below it. For example, if the user press some button, the name "david" will be added the the csv file, and it will look like:
"name,address,id"
"david"
and when the user will press other button, the adress "3 street" will be added, so it will look like:
"name,address,id"
"david, 3 street"
and so on, so in the end there will the a list of names and their address and id. I just can't figured out how to do it and I cant anything similar. Maybe there is another way to do it?