Reputation: 450
I write java code to download CSV file ,
I have 40GB sapce remains on drive
File size of CSV is only 30KB
1) if headers size is less then file download no problem
3) if headers size reaches more than 700 then server stop automatically and after file opening giving error as file column size exceed.
It hide some column automatically
**
I read CSV column related question all answer says that no column limit of csv file then Why i am getting this issue
**
Upvotes: 1
Views: 8106
Reputation: 1238
The CSV format has no column limit, but some applications that open or process CSV files may have limits. For example, old versions of Excel could not handle more than 256 columns.
Upvotes: 6