Todd Hall <thall6 <at> yahoo.com> writes:

> 
> Can anyone tell me if they are familiar with the following exception, what 
it 
> may mean, and if there are any known solutions? I suspect it is data data 
> related in the excel file I am reading, but I can not seem to narrow it to a 
> specific field/cell.
> 


I found out that there is apprently a 64kb file size limit when processing a 
file that was uploaded via brwoser from client. Uploaded file is converted to 
input stream. Exception is thrown when trying to creat workbook:


//getFileContents() return a String containing file contents
InputStream is = new ByteArrayInputStream(getFileContents().getBytes());
HSSFWorkbook workBook = new HSSFWorkbook(is);


Anyone out there run into this and have a solution that does not involve 
writing the file to the filesystem?





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to