读书人

导出到excel报表

发布时间: 2013-08-09 15:16:24 作者: rapoo

导出到excel表格




public static void exportExcel(Map beans, String templateName, OutputStream out) {XLSTransformer transformer = new XLSTransformer();try {FileInputStream fis=new FileInputStream(templateName);transformer.transformXLS(fis, beans).write(out);fis.close();} catch (ParsePropertyException e) {e.printStackTrace();} catch (FileNotFoundException e) {e.printStackTrace();} catch (IOException e) {e.printStackTrace();} catch (InvalidFormatException e) {e.printStackTrace();}}

读书人网 >Web前端

热点推荐