From ade1863442681e0a518c4c75142c8bbd656da979 Mon Sep 17 00:00:00 2001 From: "Leo.Cai" <1836630213@qq.com> Date: Thu, 10 Oct 2019 13:50:59 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BB=A3=E7=A0=81=E6=94=B9=E4=B8=BAutf-8?= =?UTF-8?q?=E7=BC=96=E7=A0=81=202.=E5=8E=BB=E6=8E=89=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E5=A4=9A=E4=BD=99=E7=9A=84=E6=B3=A8=E9=87=8A=E9=83=A8=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/fr/io/ExportApi_frm.java | 60 +++------------------- 1 file changed, 7 insertions(+), 53 deletions(-) diff --git a/src/main/java/com/fr/io/ExportApi_frm.java b/src/main/java/com/fr/io/ExportApi_frm.java index eb476cc..ba15d77 100644 --- a/src/main/java/com/fr/io/ExportApi_frm.java +++ b/src/main/java/com/fr/io/ExportApi_frm.java @@ -30,7 +30,7 @@ import java.io.FileOutputStream; public class ExportApi_frm { public static void main(String[] args) { - // 定义报表运行环境,用于执行报表 + // 瀹氫箟鎶ヨ〃杩愯鐜,鐢ㄤ簬鎵ц鎶ヨ〃 Module module = ActivatorToolBox.simpleLink(new BaseDBActivator(), new ConfigurationActivator(), new StandaloneModeActivator(), @@ -42,72 +42,26 @@ public class ExportApi_frm { new WriteActivator(), new ChartBaseActivator()); SimpleWork.supply(CommonOperator.class, new CommonOperatorImpl()); - String envpath = "C:\\Users\\hipsh\\Desktop\\apache-tomcat-8.5.38-10.0\\webapps\\webroot\\WEB-INF\\";//工程路径 + String envpath = "C:\\Users\\hipsh\\Desktop\\apache-tomcat-8.5.38-10.0\\webapps\\webroot\\WEB-INF\\";//宸ョ▼璺緞 SimpleWork.checkIn(envpath); I18nResource.getInstance(); module.start(); - - -// ResultWorkBook rworkbook = null; try { - // 导出cpt,未执行模板工作薄 - -// WorkBook workbook = (WorkBook) TemplateWorkBookIO -// .readTemplateWorkBook("测试模板.frm"); - // 获取报表参数并设置值,导出内置数据集时数据集会根据参数值查询出结果从而转为内置数据集 -// Parameter[] parameters = workbook.getParameters(); -// parameters[0].setValue("华东"); - // 定义parametermap用于执行报表,将执行后的结果工作薄保存为rworkBook + java.util.Map parameterMap = new java.util.HashMap(); parameterMap.put("aa", "1"); -// for (int i = 0; i < parameters.length; i++) { -// parameterMap.put(parameters[i].getName(), parameters[i] -// .getValue()); -// } - //导出frm时用这个 ResultWorkBook re = FormToWBExecutor.executeForm("test.frm",parameterMap); - // 定义输出流 + // 瀹氫箟杈撳嚭娴 FileOutputStream outputStream; -// // 将未执行模板工作薄导出为内置数据集模板 -// outputStream = new FileOutputStream(new File("/Users//susie//Downloads//EmbExport.cpt")); -// EmbeddedTableDataExporter templateExporter = new EmbeddedTableDataExporter(); -// templateExporter.export(outputStream, workbook); -// // 将模板工作薄导出模板文件,在导出前您可以编辑导入的模板工作薄,可参考报表调用章节 -// outputStream = new FileOutputStream(new File("/Users//susie//Downloads//TmpExport.cpt")); -// ((WorkBook) workbook).export(outputStream); -// // 将结果工作薄导出为2003Excel文件 -// outputStream = new FileOutputStream(new File("/Users//susie//Downloads//ExcelExport.xls")); -// ExcelExporter ExcelExport = new ExcelExporter(); -// ExcelExport.export(outputStream, workbook.execute(parameterMap, new WriteActor())); - // 将结果工作薄导出为Excel文件 + // 灏嗙粨鏋滃伐浣滆杽瀵煎嚭涓篍xcel鏂囦欢 outputStream = new FileOutputStream(new File("C:\\FTPServer\\1528.xlsx")); StreamExcel2007Exporter ExcelExport1 = new StreamExcel2007Exporter(); - //ResultWorkBook re = FSFormletHandler.executeForm("calendar.frm",parameterMap); - - //ResultWorkBook re = FSFormletHandler.executeForm("test.frm",parameterMap); - // ExcelExport1.export(outputStream, workbook.execute(parameterMap, new WriteActor())); ExcelExport1.export(outputStream,re); -// // 将结果工作薄导出为Word文件 -// outputStream = new FileOutputStream(new File("/Users//susie//Downloads//WordExport.doc")); -// WordExporter WordExport = new WordExporter(); -// WordExport.export(outputStream, workbook.execute(parameterMap, new WriteActor())); -// // 将结果工作薄导出为Pdf文件 + // 灏嗙粨鏋滃伐浣滆杽瀵煎嚭涓篜df鏂囦欢 outputStream = new FileOutputStream(new File("C:\\FTPServer\\PdfExport.pdf")); PDFExporter PdfExport = new PDFExporter(); PdfExport.export(outputStream, re); -// // 将结果工作薄导出为Txt文件(txt文件本身不支持表格、图表等,被导出模板一般为明细表) -// outputStream = new FileOutputStream(new File("/Users//susie//Downloads//TxtExport.txt")); -// TextExporter TxtExport = new TextExporter(); -// TxtExport.export(outputStream, workbook.execute(parameterMap, new WriteActor())); -// // 将结果工作薄导出为Csv文件 -// outputStream = new FileOutputStream(new File("/Users//susie//Downloads//CsvExport.csv")); -// CSVExporter CsvExport = new CSVExporter(); -// CsvExport.export(outputStream, workbook.execute(parameterMap, new WriteActor())); -// //将结果工作薄导出为SVG文件 -// outputStream = new FileOutputStream(new File("/Users//susie//Downloads//SvgExport.svg")); -// SVGExporter SvgExport = new SVGExporter(); -// SvgExport.export(outputStream, workbook.execute(parameterMap, new WriteActor())); -// //将结果工作薄导出为image文件 + //灏嗙粨鏋滃伐浣滆杽瀵煎嚭涓篿mage鏂囦欢 outputStream = new FileOutputStream(new File("C:\\FTPServer\\PngExport.png")); ImageExporter ImageExport = new ImageExporter(); ImageExport.export(outputStream, re);