彩票走势图

图表生成器Stimulsoft Reports.Java示例:在运行时使用 MySQL 数据库创建报告

翻译|使用教程|编辑:李显亮|2021-08-23 10:18:31.157|阅读 194 次

概述:此示例项目展示了如何使用 MySQL 字段创建新报告并提取 MySQL 数据库信息。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

Stimulsoft Ultimate是用于创建报表和仪表板的通用工具集。该产品包括用于WinForms、ASP.NET、.NET Core、JavaScript、WPF、PHP、Java和其他环境的完整工具集。

Stimulsoft Reports不仅拥有强大的报表导出系统,而且还支持多种报表导出格式,拥有简单且强大的报表引擎。Stimulsoft Reports基本原则是,用简单常规的方法创建报表,将不同的技术应用于应用程序。Stimulsoft Reports.Java是一个专为在Java应用程序中的报表进行交互和处理的报表工具。

点击下载Stimulsoft Reports.Java v2021.3.1最新版

此示例项目展示了如何使用 MySQL 字段创建新报告并提取 MySQL 数据库信息。

首先,您需要创建一个新报告并添加一个 MySqlDatabase。在StiMySqlDatabase类的构造函数中,您应该设置数据库名称、别名和连接字符串:

public static StiReport createReport() throws ClassNotFoundException, SQLException, StiException, FileNotFoundException {
	StiReport report = StiReport.newInstance();
	StiPage page = report.getPages().get(0);
	report.setDictionary(new StiDictionary(report));
	StiMySqlDatabase db = new StiMySqlDatabase(
		"test", "test", "url=jdbc:mysql://localhost:3306/sakila;user=root;password=terra2;database=sakila");
		report.getDictionary().getDatabases().add(db);

...

接下来,我们需要创建一个数据源。创建StiMySqlSource对象,提取“演员”数据表字段并填充此数据源:

...

	StiMySqlSource source = new StiMySqlSource("test.actors", "actors", "actors", "select * from actor");
	source.setDictionary(report.getDictionary());
	report.getDictionary().getDataSources().add(source);
	source.setColumns(new StiDataColumnsCollection());
	StiMySqlAdapter adapter = new StiMySqlAdapter(db.getConnectionString());
	Class.forName(adapter.getDriverName());
	Connection con = com.stimulsoft.webdesigner.helper.StiDictionaryHelper.getConnection(adapter.getJdbcParameters());
	StiTableFieldsRequest request = StiDataColumnsUtil.getFields(con, source.getQuery(), source);
	for (StiSqlField field : request.getColunns()) {
		source.getColumns().add(new StiDataColumn(field.getName(), field.getName(), field.getSystemType()));
	}

...

数据源已创建,现在我们需要在报表页面上显示数据。StiDataBand向报告页面和StiText所有数据列的组件添加一个新组件。还要为标题添加标题:

...

	StiDataBand dataBand = new StiDataBand();
	dataBand.setDataSourceName("actors");
	dataBand.setHeight(0.5);
	dataBand.setName("DataBand");
	page.getComponents().add(dataBand);
	
	double pos = 0;
	double columnWidth = page.getWidth() / source.getColumns().size();
	Integer nameIndex = 1;
	for (StiDataColumn dataColumn : source.getColumns()) {
		// Create text on header
		StiText hText = new StiText(new StiRectangle(pos, 0, columnWidth, 0.5));
		
		hText.setTextInternal(dataColumn.getName());
		hText.setHorAlignment(StiTextHorAlignment.Center);
		hText.setName("HeaderText" + nameIndex.toString());
		hText.setBrush(new StiSolidBrush(StiColorEnum.Orange.color()));
		hText.getBorder().setSide(StiBorderSides.All);
		
		StiText dataText = new StiText(new StiRectangle(pos, 0, columnWidth, 0.5));
		dataText.setText("{actors." + dataColumn.getName() + "}");
		dataText.setName("DataText" + nameIndex.toString());
		dataText.getBorder().setSide(StiBorderSides.All);
		dataBand.getComponents().add(dataText);
		pos = pos + columnWidth;
		nameIndex++;
	}

...

最后,使用Render()report对象的方法渲染创建的报表,并返回结果:

...

	report.Render();
	return report;
}

为了显示报告,我们使用本机 Java 查看器。我们需要创建查看器对象,添加必要的事件侦听器并分配报告:

public static void showReport(StiReport report) {
	JFrame frame = new JFrame();
	JPanel panel = new JPanel();
	panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
	panel.setPreferredSize(new Dimension(1000, 1000));
	StiViewerFx viewerPanel = new StiViewerFx(frame);
	panel.add(viewerPanel);
	frame.add(panel);
	frame.setSize(new Dimension(1000, 1000));
	frame.setLocationRelativeTo(null);
	frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
	frame.setVisible(true);
	viewerPanel.getStiViewModel().getEventDispatcher()
		.dispatchStiEvent(new StiViewCommonEvent(StiViewCommonEvent.DOCUMENT_FILE_LOADED, new StiDocument(report), null));
}

public static void main(String[] args) throws ClassNotFoundException, SQLException, StiException, FileNotFoundException {
	StiReport report = createReport();
	showReport(report);
}

在下面的屏幕截图中,您可以看到示例代码的结果:

报表生成器Stimulsoft Reports.Java示例:在运行时使用 MySQL 数据库创建报告

Aspose、E-iceblue、FastReport、Stimulsoft等文档/报表图表类开发工具享超低折扣,如有需要可直接。


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@capbkgr.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP