Able to create compressed csv files , like gz to save disk space and faster transfers
To be able to create/write to compressed csv to save disk space and faster file transfer
There is no need as Java already has built in libraries to read and write gzip files.
https://medium.com/javarevisited/efficient-handling-and-processing-of-compressed-files-in-java-7d023551168c
Using the GZIPOutputStream - https://docs.oracle.com/javase/8/docs/api/index.html?java/util/zip/ZipOutputStream.html
Using an OutputStreamWriter as a wrapper of the GZIPOutputStream you have a writer that you can create a CSVWriter with and you are now creating compressed csv files. https://www.tutorialspoint.com/how-to-convert-an-outputstream-to-a-writer-in-java
closed for lack of response
Log in to post a comment.
To be able to create/write to compressed csv to save disk space and faster file transfer
There is no need as Java already has built in libraries to read and write gzip files.
https://medium.com/javarevisited/efficient-handling-and-processing-of-compressed-files-in-java-7d023551168c
Using the GZIPOutputStream - https://docs.oracle.com/javase/8/docs/api/index.html?java/util/zip/ZipOutputStream.html
Using an OutputStreamWriter as a wrapper of the GZIPOutputStream you have a writer that you can create a CSVWriter with and you are now creating compressed csv files. https://www.tutorialspoint.com/how-to-convert-an-outputstream-to-a-writer-in-java
closed for lack of response