in my Java program, I would like to use the Apache Commons library to generate the content of a CSV file, but not actually creating the file.
I only want to have the String content of the file, and later, write the file using that content using an existing method.
However in all examples of code, it is necessary to define in the target csv file before hand, giving its path and name, but I don't have it, at this moment of the program flow. Is it possible to just get the String for the future csv file, and handle the real file creation independently? Thank you.