<%
String format=request.getparameter("format");
if((format!=null)&&(format.equals("excel")))
{
setContentType("application/vnd.ms-excel");
}
%>
在页面中指定format=excel可生成excel内容,否则就是html格式的内容