Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Passing an Array to iReport

 
Ranch Hand
Posts: 2206
2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
I have an array I need to pass to iReport. I am using JSP to call the report as such:



The parameter on the iReport is "reportArray", Parameter Class Type: java.lang.String[][]

I get the following error in my console when I run this:

[8/31/09 8:07:32:275 CDT] 0000001f SystemOut O net.sf.jasperreports.engine.JRException: Incompatible [[Ljava.lang.String; value assigned to parameter reportArray in the MainScheduleMatrixReportV4 dataset.
 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
hey steve..

even i am facing a similar issue..

i.e i am passing an Integer[] as parameter to the .jrxml file .
in my .jrxml i have
<parameter name="id" class="java.lang.Integer"/>

Now its throwing me exception
"JRException: Incompatible [Ljava.lang.Integer; value assigned to parameter"

i m not sure how to resolve this..
 
Don't get me started about those stupid light bulbs.
    Bookmark Topic Watch Topic
  • New Topic