您的位置:首页 > Web前端 > CSS

POI 导出EXCEL样式实例

2015-09-18 19:38 519 查看
先看看样版吧



具体代码实现:



附上一段Excel 下载的代码

try {
response.reset();// 清空输出流
response.addHeader("Content-disposition","attachment;filename=" + new String( "财务报表(预订).xlsx".getBytes("utf8"), "ISO8859-1" ));
response.setContentType("application/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
response.setCharacterEncoding("utf-8");
wb.write(response.getOutputStream());
} catch (IOException e) {
logger.error("out 写 excel 文件出错。。 请重新再试",e);
throw e;
}


参考资料

/article/4477597.html 这个是 配色的
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: