Jump to content
We've recently updated our Privacy Statement, available here ×

fviscomi

Members
  • Posts

    2
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by fviscomi

  1. Hi all and thanks for yours answer. I need to pass a list to JasperFillManager.fillReport. I've a class like this: public class DataBean { private String name; private String country; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public List<String> getdta(){ List<> lista=new arraList<String>(); lista.add("ss"); lista.add("rr"); } } Now I fill the report: JasperFillManager.fillReport( sourceFileName, parameters, beanColDataSource); But in the IReport designer i can choose only string and not list. any suggest is really appreciated. francesco Italy
×
×
  • Create New...