首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

导出到excel报表

2013-08-09 
导出到excel表格public static void exportExcel(Map beans, String templateName, OutputStream out) {XL

导出到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();}}

热点排行