I'm decrypting a string to reveal multiple comma separated values and I want to access the individual pieces of information, but the encrypted string does not include the header values.
I am aware that when reading CSV files information at a specific column can be accessed by using for example:
CSVRecord.get(ID);
Where ID is a header value in the table, but there doesn't seem to be a way to access this without knowing the header name.
The encrypted string is being decrypted in another application.
Is there a way to read the access the comma separated values without knowing the header value, or are there any alternatives to CSVRecord?