I am attempting to write data from an InputStream into an Excel file. While I can do so, the data is writing to the first column there is, instead of writing to different columns. For instance, if my data was like
Holiday Name Date
Valentine's Day 2/14
Christmas 12/25
Then Column B in Excel should contain the Date info, right? Instead, it's mushed together in Column A with the Holiday Name info. I was wondering if there was any way to write data to separate columns in Excel just with Java code and no plugins or imports.