Re: Java API for Excel

2017-04-21 Thread Dominik Stadler
Hi, Can you share an anonymized sample-csv-file? Apache POI likely does not have support for this itself, but if it is a text-format, it should be fairly easy to iterate over the rows/cells and produce the text-format yourself if we can figure out how Excel formats this CSV in some special way to

Re: Java API for Excel

2017-04-21 Thread Javen O'Neal
I'm guessing that an Excel CSV file is a regular CSV file that is written in a specific dialect (quoted strings, newline character, delimiter, etc). You could try transforming your CSV file into an Excel dialect if you knew what this dialect was (I'm assuming the receiving website has a spec and a