如何编译 jrxml 来获取 Jasper?

I have < strong > jrxml file, I want to compile this to get 贾斯珀. How do I compile and get that 贾斯珀 file?

175180 次浏览

将 jrxml 编译成 Jasper 有三种方法。

  1. 您可以通过 iReport 设计器上的编译按钮(锤子徽标)进行直接编译。

  2. You can use ant to compile as shown in the Ant 编译示例.

    <target name="compile1">
    <mkdir dir="./build/reports"/>
    <jrc
    srcdir="./reports"
    destdir="./build/reports"
    tempdir="./build/reports"
    keepjava="true"
    xmlvalidation="true">
    <classpath refid="runClasspath"/>
    <include name="**/*.jrxml"/>
    </jrc>
    </target>
    

    下面是我当前项目的报告编译任务。

    alt text

    来自 Daniel Rikowski的补充:

  3. 还可以使用 JasperCompileManager类从 Java 代码进行编译。

    JasperCompileManager.compileReportToFile(
    "our_jasper_template.jrxml", // the path to the jrxml file to compile
    "our_compiled_template.jasper"); // the path and name we want to save the compiled file to
    

我使用 iReport 2.0.2来生成 Jasper 文件。

我没有找到锤子的标志,但是我在菜单栏中有一个菜单 create > compile,它在 iReport 程序文件夹中创建了 Jasper 文件:

IReport Logs: “ Compilation vers le ficher... . SalesOrderItemsSubreportA4.jasper-> C: Program Files JasperSoft iReport-2.0.2 SalesOrderItemsSubreportA4.java”

而 Maven 则是自动的:

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jasperreports-maven-plugin</artifactId>
<configuration>
<outputDirectory>target/${project.artifactId}/WEB-INF/reports</outputDirectory>
</configuration>
<executions>
<execution>
<phase>prepare-package</phase>
<inherited>false</inherited>
<goals>
<goal>compile-reports</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>3.7.6</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
<type>jar</type>
</dependency>
</dependencies>
</plugin>

使用版本5.1.0:

只要点击预览,它就会在同一个工作目录中为你创建一个 YourreportName.jasper。

如果您正在使用 iReport,那么您可以轻松地完成它。

  1. When you click preview it will automatically compile.
  2. 还有一个选择,使其符合。你可以通过选择页面进行编译,然后右击你就会得到编译选项。

对于任何使用 Jaspersoft 工作室(我认为它正在取代 iReports; 它非常相似,仍然是免费软件,只是基于 eclipse)的人来说,在你的编辑器区域的顶部寻找“编译报告”图标。Jrxml 文件。它的图标,位于图标行的第一个,是一个带有二进制数字的文件(至少在5.6.2版本中是这样的) :

Jaspersoft Studio - compile report

单击此图标将在与.jrxml 文件相同的目录中生成.jasper 文件。

如果您希望在不预览的情况下编译多个 jrxml 文件,请使用 iReport 设计器5.6.0-转到 Tools-> Massive Processing Tool。选择 Elabation Type 作为“ Compile Files”,选择存储所有 jrxml 报告的文件夹,并将它们批量编译。

日食时,

  • 为 Eclipse 安装 Jaspersoft Studio
  • 右键单击 .jrxml文件并选择 Open with JasperReports Book Editor
  • 打开 .jrxml文件的 Design选项卡。
  • 在窗口的顶部,您可以看到 Compile Report图标。
 **A full example of POM file**.


Command to Build All **Jrxml** to **Jasper File** in maven
If you used eclipse then right click on the project and Run as maven Build and add goals antrun:run@compile-jasper-reports




compile-jasper-reports is the id you gave in the pom file.
**<id>compile-jasper-reports</id>**








<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>


<groupId>com.test.jasper</groupId>
<artifactId>testJasper</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>


<name>TestJasper</name>
<url>http://maven.apache.org</url>


<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>


<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>6.3.0</version>
</dependency>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports-fonts</artifactId>
<version>6.0.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.6</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.6</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>




</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>compile-jasper-reports</id>
<goals>
<goal>run</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<target>
<echo message="Start compile of jasper reports" />
<mkdir dir="${project.build.directory}/classes/reports"/>
<echo message="${basedir}/src/main/resources/jasper/jasperreports" />
<taskdef name="jrc" classname="net.sf.jasperreports.ant.JRAntCompileTask"
classpathref="maven.compile.classpath" />
<jrc srcdir="${basedir}/src/main/resources/jasper/jasperreports" destdir="${basedir}/src/main/resources/jasper/jasperclassfile"
xmlvalidation="true">
<classpath refid="maven.compile.classpath"/>
<include name="**/*.jrxml" />
</jrc>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
  1. 在 iReport Designer 中打开. jrxml 文件。
  2. 打开报表检查器(窗口-> 报表检查器)。
  3. 右键单击检查器顶部的报告名称,然后单击“编译报告”。

您还可以预览您的报表,以便自动编译。

IReport5.5.0中,只需在 报告督察块窗口查看器中的 右键单击报表基层次结构,然后单击 编制报告

In iReport, just right click the report base hierachy in Report

您现在可以在控制台中看到结果。

enter image description here

如果使用 eclipseIDE,只需在。Jrxml 文件,然后单击编译选项