关于一个标准的poi下载文件模板 可拿来来直接使用

Posted 490889763-qq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于一个标准的poi下载文件模板 可拿来来直接使用相关的知识,希望对你有一定的参考价值。

@RequestMapping(value = "/RK/downloadDemo")
@ResponseBody
public void downloadExcel(HttpServletResponse response,HttpServletRequest request)
try
Workbook workbook = new HSSFWorkbook();
request.setCharacterEncoding("UTF-8");
response.setCharacterEncoding("UTF-8");
response.setContentType("application/x-download");
String filedisplay = "资产入库模板.xls";
filedisplay = URLEncoder.encode(filedisplay, "UTF-8");
response.addHeader("Content-Disposition", "attachment;filename="+ filedisplay);
// 第二步,在webbook中添加一个sheet,对应Excel文件中的sheet
Sheet sheet = workbook.createSheet("资产入库模板");
// 第三步,在sheet中添加表头第0行
Row row = sheet.createRow(0);
// 第四步,创建单元格,并设置值表头 设置表头居中
CellStyle style = workbook.createCellStyle();
style.setAlignment(CellStyle.ALIGN_CENTER); // 创建一个居中格式
Cell cell = row.createCell(0);
cell.setCellValue("资产类别");
cell.setCellStyle(style);
sheet.setColumnWidth(0, (25 * 256)); //设置列宽,50个字符宽
cell = row.createCell(1);
cell.setCellValue("资产名称");
cell.setCellStyle(style);
sheet.setColumnWidth(1, (20 * 256)); //设置列宽,50个字符宽
cell = row.createCell(2);
cell.setCellValue("规格型号");
cell.setCellStyle(style);
sheet.setColumnWidth(2, (15 * 256)); //设置列宽,50个字符宽
cell = row.createCell(3);
cell.setCellValue("SN号");
cell.setCellStyle(style);
sheet.setColumnWidth(3, (15 * 256)); //设置列宽,50个字符宽
cell = row.createCell(4);
cell.setCellValue("单位");
cell.setCellStyle(style);
sheet.setColumnWidth(4, (20 * 256)); //设置列宽,50个字符宽
cell = row.createCell(5);
cell.setCellValue("单价");
cell.setCellStyle(style);
sheet.setColumnWidth(5, (20 * 256)); //设置列宽,50个字符宽
cell = row.createCell(6);
cell.setCellValue("残值率");
cell.setCellStyle(style);
sheet.setColumnWidth(6, (20 * 256)); //设置列宽,50个字符宽

cell = row.createCell(7);
cell.setCellValue("存放仓库");
cell.setCellStyle(style);
sheet.setColumnWidth(7, (20 * 256)); //设置列宽,50个字符宽

cell = row.createCell(8);
cell.setCellValue("购入时间");
cell.setCellStyle(style);
sheet.setColumnWidth(8, (20 * 256)); //设置列宽,50个字符宽

cell = row.createCell(9);
cell.setCellValue("使用期限");
cell.setCellStyle(style);
sheet.setColumnWidth(9, (20 * 256)); //设置列宽,50个字符宽

cell = row.createCell(10);
cell.setCellValue("供应商");
cell.setCellStyle(style);
sheet.setColumnWidth(10, (20 * 256)); //设置列宽,50个字符宽
// 第五步,写入实体数据 实际应用中这些数据从数据库得到
row = sheet.createRow(1);
row.createCell(0, Cell.CELL_TYPE_STRING).setCellValue("14");
row.createCell(1, Cell.CELL_TYPE_STRING).setCellValue("笔记本电脑");
row.createCell(2, Cell.CELL_TYPE_STRING).setCellValue("Y1123");
row.createCell(3, Cell.CELL_TYPE_STRING).setCellValue("SN01");
row.createCell(4, Cell.CELL_TYPE_STRING).setCellValue("台");
row.createCell(5, Cell.CELL_TYPE_STRING).setCellValue("5000");
row.createCell(6, Cell.CELL_TYPE_STRING).setCellValue("0.01");
row.createCell(7, Cell.CELL_TYPE_STRING).setCellValue("9");
row.createCell(8, Cell.CELL_TYPE_STRING).setCellValue("2019-09-01");
row.createCell(9, Cell.CELL_TYPE_STRING).setCellValue("36");
row.createCell(10, Cell.CELL_TYPE_STRING).setCellValue("联想专卖");
// 第六步,将文件存到指定位置
try

OutputStream out = response.getOutputStream();
workbook.write(out);
out.close();

catch (Exception e)

e.printStackTrace();

catch (Exception e)
e.printStackTrace();

以上是关于关于一个标准的poi下载文件模板 可拿来来直接使用的主要内容,如果未能解决你的问题,请参考以下文章

POI之下载模板(或各种文件)

基于linux下的krpano的使用

整理了20个数据可视化大屏模板,拿来即用

整理了20个数据可视化大屏模板,拿来即用

关于java poi导出excel弹出下载框无法弹出的问题

POI操作Word模板文本替换(表格文本替换)