I created a CsvBuilderService
CSVBuilderService<Vector<Object>> builder = new CSVBuilderService<Vector<Object>>();
Then I created ByeArrayOutputStream:
ByteArrayOutputStream os = (ByteArrayOutputStream)builder.buildCsvToStream(tableDataMatrixTemp);
tableDataMatrixTemp is a Vector< Object >.
Now, how can I print that > on a CSV and saving the csv on a specified path? (I don't want to download the file from web, only save it to a path).