| Author |
Excel file is corrupted when i download it
|
mallikarjun dontamsetti
Ranch Hand
Joined: Mar 18, 2011
Posts: 177
|
|
hi, i have generated excel file using Apache POI .it is generated in my root path under excel folder.when user click save as excel the created file should download to user chosen location. it is get downloaded to that perticular path given by user but, when i try to open a message is showing like this file format corrupted ......my code on click of button on jsp is
but the generated code is giving a corrupted excel file
|
 |
mallikarjun dontamsetti
Ranch Hand
Joined: Mar 18, 2011
Posts: 177
|
|
|
It is working when i deployed it on web not in local system why?
|
 |
Rob Spoor
Saloon Keeper
Joined: Oct 27, 2005
Posts: 18374
|
|
|
You shouldn't use JSP files to display any binary file, including Excel files. Any whitespace between tags (like at the top, between import directives) can already be added to the output. That will cause corruption of binary files. Instead, use a servlet to display the binary file.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
mallikarjun dontamsetti
Ranch Hand
Joined: Mar 18, 2011
Posts: 177
|
|
|
thanks
|
 |
Rob Spoor
Saloon Keeper
Joined: Oct 27, 2005
Posts: 18374
|
|
|
You're welcome.
|
 |
 |
|
|
subject: Excel file is corrupted when i download it
|
|
|