java - Not getting size while downloading Excel from JSP file -


i wanted download excel .jsp file in application. have added following lines jsp's:

<%@ page contenttype="application/vnd.ms-excel" %>    response.setheader("pragma", "no-cache");   response.setheader("cache-control", "no-cache");   response.setdateheader("expires", 0); 

i able download but, in pages able see size while downloading , in not able to. want pages size.

can please me?


Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -