“Jasper Report with JavaFX”

huangapple go评论67阅读模式
英文:

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"

“Jasper Report with JavaFX”

答案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:

&lt;dependency&gt;
    &lt;groupId&gt;net.sf.jasperreports&lt;/groupId&gt;
    &lt;artifactId&gt;jasperreports&lt;/artifactId&gt;
    &lt;version&gt;6.12.2&lt;/version&gt;
&lt;/dependency&gt;

huangapple
  • 本文由 发表于 2020年4月4日 23:51:00
  • 转载请务必保留本文链接:https://go.coder-hub.com/61030703.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定