直接通过网页jsp导出Excel文件

来源:互联网 发布:网上开店铺的软件 编辑:程序博客网 时间:2024/06/06 00:52

<%

CookieUtil.add("downloaded","true",3600,response);

String fileName = new String("******".getBytes("GBK"),"ISO-8859-1");

response.setContentType("application/x-xls; charset=gb2312");

response.setHeader("Content-Disposition", "attachment;filename=" + fileName + ".xls");

%>

<html>

<head>

<style>

.xlsText{mso-number-format:"\@"}

</style>

<head>

<body>

....

原创粉丝点击