I am trying to write data, which comes in as a QR Code and I want to scan the data to a .csv. The user has to define the file name before hand, so they can open up files they scanned to before, or make a new one. The data comes in formatted as "name,phone#,email" which would look something like this:
joe,1234567890,joe@joe.com
The main thing to see from that is the data comes in as a string with commas so writing to csv is easy. I have seen many questions answered about writing to csv in java, and my main problem is not that, but how to use the android file system to open existing or make new files.
If you need to see something else from the app, I can attach what you need.
Thank you for your help!!
Edit 1: Got rid of extraneous code
Edit 2: Clarified question