This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Excel size becomes large while creating excel file in jsp using content type
bhagyah
Greenhorn
Joined: Jul 05, 2007
Posts: 1
posted
0
Hi All,
I created an excel using jsp by setting content type as excel, the size of the excel is coming nearly around 5MB. If copy the content of that 5MB excel content and paste it and created another excel directly. The size of the new excel is coming around 1 MB.
It will be great if any body reply me as soon as possible.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
Welcome to JavaRanch.
You can't create XLS files using a JSP. I'm guessing that you're creating an HTML table that happens to be readable by Excel; correct? If so, it's no surprise that the data takes up much less space once it's in Excel, because all those HTML tags are gone. [ October 08, 2008: Message edited by: Ulf Dittmer ]