如何将JSON数组值传递到Jasper Reports子报表中? [英] How to pass a JSON array value into a Jasper Reports subreport?

查看:78
本文介绍了如何将JSON数组值传递到Jasper Reports子报表中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Jasper报表和子表存在问题.

Having a problem with Jasper Reports and Subtables.

我正在使用以下JSON格式:

I'm working with the following JSON format:

[
  {
    "dataObjects": [
      {
        "objectId": "025b3873ebe640aa9d6a34f9306548ae",
        "employeeFullName": "John Smith",
        "employeeGrade": "GS12"
      },
      {
        "objectId": "08b9300f62dc498f86c675ac5897b4c9",
        "employeeFullName": "Bill Johnson",
        "employeeGrade": "GS14"
      }
    ]
  },
  {
    "dataObjects": [
      ...
    ]
  },
  {
    "dataObjects": [
      ...
    ]
  },
  {
    "dataObjects": [
      ...
    ]
  }
]

数据以四个JSON对象的数组形式返回.每个对象都包含.dataObjects

The data returns as an array of four JSON objects. Each object contains the result of a query under .dataObjects

在这种情况下,我需要能够将此数据显示为四个单独的子报表(图表).

I need to be able to display this data as four separate subreports, charts, in this case.

在数组的情况下,我看不到将数据从父级传递到子报表的方法.

I'm not seeing a way to pass the data from the parent to the subreport in the case of an array.

重新格式化数据可以使我:

Playing with reformatting the data gives me:

{
  "report0": {
    "dataObjects": [
      {
        "objectId": "025b3873ebe640aa9d6a34f9306548ae",
        "employeeFullName": "John Smith",
        "employeeGrade": "GS12"
      },
      {
        "objectId": "08b9300f62dc498f86c675ac5897b4c9",
        "employeeFullName": "Bill Johnson",
        "employeeGrade": "GS14"
      }
    ],
  },
  "report1": {
    "dataObjects": [
      ...
    ]
  },
  "report2": {
    "dataObjects": [
      ...
    ]
  },
  "report3": {
    "dataObjects": [
      ...
    ]
  }  
}

,使用此方法效果很好:

and this works fine using this:

<subreport>
  <reportElement x="20" y="10" width="260" height="260" uuid="6a319da0-bd78-4f44-8445-e03b9a62cc0f"/>
  <dataSourceExpression><![CDATA[((net.sf.jasperreports.engine.data.JsonDataSource)$P{REPORT_DATA_SOURCE}).subDataSource("report0.dataObjects")]]></dataSourceExpression>
  <subreportExpression><![CDATA["quad_1.jrxml"]]></subreportExpression>
</subreport>

但是我需要能够在不重新处理数据的情况下做到这一点,我需要像这样的东西,这是行不通的:

But I need to be able to do it without reworking the data, I need something like this, which does not work:

<subreport>
  <reportElement x="20" y="10" width="260" height="260" uuid="6a319da0-bd78-4f44-8445-e03b9a62cc0f"/>
  <dataSourceExpression><![CDATA[((net.sf.jasperreports.engine.data.JsonDataSource)$P{REPORT_DATA_SOURCE}).subDataSource("[0].dataObjects")]]></dataSourceExpression>
  <subreportExpression><![CDATA["quad_1.jrxml"]]></subreportExpression>
</subreport>            

广泛的Google搜索没有发现有关使用json-list的任何信息.有想法吗?

Extensive Googling has not found anything about working with a json-list. Thoughts?

这被标记为重复项,但是重复项无法解决我遇到的问题.

This was marked as a duplicate, but the duplicate does not address the issue I'm having.

我需要将数据传递到子报表,数组中的每个条目都转到一个单独的子报表.如上所述,我可以解决该问题,但要求是子报表.

I need to pass the data to subreports, each entry in the array goes to a separate subreport. I could work around the problem, possibly, as described, but the requirement is for subreports.

推荐答案

这可以通过JSONQL(一种更强大的替代初始JSON语言)来实现.

This could be achieved with JSONQL, a more capable replacement of the initial JSON language.

您的主报告可能看起来像这样(为简洁起见,我重复使用了相同的子报告):

Your main report could look like this(I'm reusing the same subreport just for brevity):

<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with Jaspersoft Studio version 6.9.0.final using JasperReports Library version 6.9.0-cb8f9004be492ccc537180b49c026951f4220bf3  -->
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="Report" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="749076bd-1ea5-4847-85e1-cf88b11c9ef6">
    <property name="com.jaspersoft.studio.data.defaultdataadapter" value="DataAdapter.xml"/>
    <queryString language="jsonql">
        <![CDATA[[0]]]>
    </queryString>
    <background>
        <band splitType="Stretch"/>
    </background>
    <summary>
        <band height="160" splitType="Stretch">
            <subreport>
                <reportElement x="0" y="0" width="550" height="40" uuid="33bba077-fd38-4db3-b2ad-56c21a18105f"/>
                <dataSourceExpression><![CDATA[((net.sf.jasperreports.engine.data.JsonQLDataSource)$P{REPORT_DATA_SOURCE}).subDataSource("dataObjects")]]></dataSourceExpression>
                <subreportExpression><![CDATA["SubReport.jasper"]]></subreportExpression>
            </subreport>
            <subreport>
                <reportElement positionType="Float" x="0" y="40" width="550" height="40" uuid="bb8ab5c7-0fe8-4398-8efc-6d648e6a3a2c"/>
                <dataSourceExpression><![CDATA[((net.sf.jasperreports.engine.data.JsonQLDataSource)$P{REPORT_DATA_SOURCE}).subDataSource("^[1].dataObjects")]]></dataSourceExpression>
                <subreportExpression><![CDATA["SubReport.jasper"]]></subreportExpression>
            </subreport>
            <subreport>
                <reportElement positionType="Float" x="0" y="80" width="550" height="40" uuid="001d79d0-e850-41a9-8995-f55d6e96bc45"/>
                <dataSourceExpression><![CDATA[((net.sf.jasperreports.engine.data.JsonQLDataSource)$P{REPORT_DATA_SOURCE}).subDataSource("^[2].dataObjects")]]></dataSourceExpression>
                <subreportExpression><![CDATA["SubReport.jasper"]]></subreportExpression>
            </subreport>
            <subreport>
                <reportElement positionType="Float" x="0" y="120" width="550" height="40" uuid="4d7d085b-1694-40b2-9e10-81428b1a9165"/>
                <dataSourceExpression><![CDATA[((net.sf.jasperreports.engine.data.JsonQLDataSource)$P{REPORT_DATA_SOURCE}).subDataSource("^[3].dataObjects")]]></dataSourceExpression>
                <subreportExpression><![CDATA["SubReport.jasper"]]></subreportExpression>
            </subreport>
        </band>
    </summary>
</jasperReport>

这里重要的部分是查询:

The important parts here are the queries:

  • 主要查询 [0] 很明显,它只选择数组中的第一项,因此对于第一个子报表,您只需要应用 subDatasource() dataObjects
  • 后续查询仅沿JSON树( ^ )前进,以选择适当的源对象以传递到其各自的子报表
  • the main query, [0], is pretty obvious, it just selects the first item in the array so that for the first subreport you only need to apply subDatasource() with the dataObjects key
  • the subsequent queries only travel up the JSON tree(^) to select the appropriate source object to be passed to its respective subreport

这篇关于如何将JSON数组值传递到Jasper Reports子报表中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆