博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POI导出excel项目(webwork)实例
阅读量:4957 次
发布时间:2019-06-12

本文共 2331 字,大约阅读时间需要 7 分钟。

 

后台action:

public String exportExcel(){					this.setUserList(this.getUserService().findUserInfosByGroupID(this.getGroupID(), "regTime", 1));		HSSFWorkbook wb = new HSSFWorkbook();				HSSFSheet sheet = wb.createSheet("用户表");				HSSFRow row = sheet.createRow(0);		// 第四步,创建单元格,并设置值表头 设置表头居中		HSSFCellStyle style = wb.createCellStyle();		style.setAlignment(CellStyle.ALIGN_CENTER); // 创建一个居中格式			HSSFCell cell = row.createCell(0);		cell.setCellValue("账号");		cell.setCellStyle(style);		cell = row.createCell(1);		cell.setCellValue("姓名");		cell.setCellStyle(style);		cell = row.createCell(2);		cell.setCellValue("部门");		cell.setCellStyle(style);		cell = row.createCell(3);		cell.setCellValue("注册时间");		cell.setCellStyle(style);				// 第五步,写入实体数据 实际应用中这些数据从数据库得到,				for (int i = 0; i < this.getUserList().size(); i++)		{			row = sheet.createRow(i + 1);			UserInfo user = this.getUserList().get(i);			// 第四步,创建单元格,并设置值			row.createCell(0).setCellValue(user.getUserName());			row.createCell(1).setCellValue(user.getNickName());			row.createCell(2).setCellValue(user.getCompanyName());			row.createCell( 3).setCellValue(new SimpleDateFormat("yyyy-mm-dd").format(user.getRegTime()));;					}		// 第六步,将文件存到指定位置		if(this.getGroupID()==0){		this.setExportfilename("全部用户"); //设置fileName		}else if (this.getGroupID()==8) {			this.setExportfilename("未审核用户");		}else if(this.getGroupID()==9){			this.setExportfilename("已审核用户");		}				try		{			this.setExportfilename(new String(this.getExportfilename().getBytes(),"ISO8859-1"));			this.workbook2InputStream(wb);		}		catch (Exception e)		{			logger.error(e);			return ERROR;		}		return "exportExcel";	}		 private void workbook2InputStream(HSSFWorkbook workbook) throws Exception{                  ByteArrayOutputStream baos = new ByteArrayOutputStream();         workbook.write(baos);          baos.flush();          byte[] aa = baos.toByteArray();         excelStream = new ByteArrayInputStream(aa, 0, aa.length);         baos.close();  }

  struts.xml 配置

application/vnd.ms-excel
excelStream
attachment;filename="${exportfilename}.xls"
4024
/WEB-INF/egpage/intercepthtml.jsp

  

转载于:https://www.cnblogs.com/estellez/p/4110656.html

你可能感兴趣的文章
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
Haskell学习-高阶函数
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>