英文:
Jasper Report with JavaFX
问题
我创建了一个JavaFx项目,我需要使用JasperReports库创建发票设计,当我从SourceForge网站下载JasperReports项目时,提取的文件夹中没有包含包含构建发票设计所需的jar文件的dist文件夹,该文件夹包含了这个文件夹,这里有什么问题?"我对JasperReports还不熟悉"。
英文:
I create JavaFx project and I need to create invoice design using JasperReports library when I download JasperReports project from SourceForge website the extracted folder don't contain the dist folder which contains the required jar files to build the invoice design the folder contains this folder, what's wrong here "I'm new with JasperReports"
答案1
得分: 2
因为你正在使用Maven,JasperReports有一个Maven依赖项,你可以使用它来代替手动下载和添加二进制文件。你可以在这里找到这个依赖项。
可用的最新版本:
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>6.12.2</version>
</dependency>
英文:
Since you're using Maven, JasperReports have a Maven dependency that you can use instead of manually downloading and adding the binaries. You can find the dependency here.
The latest version available:
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>6.12.2</version>
</dependency>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论