What is the maximum length of a column in csv file. Is it controllable by java code?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can have a column which is as long as the maximum files size. This is usually limited by the size of hard drive.
In Java the pratical limit is around 2 billion characters which is the maximum size of a String.
You can limit the length if you wish.