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

mnfaria1994

Members
  • Posts

    3
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Security Advisories

Downloads

Posts posted by mnfaria1994

  1. Hi. I have fields like

    200.000

    10.000

    5.000

    they are in a string. I want to sum them that and print it in the right format, 215.000 in this case. 

    I tried creating a variable with the expression Double.parseDouble ($F{field20}) but it didn't work

     

  2. maybe the problem is in the compiling of the jrxml, that's a common memory leakage problem. Instead of something like this 

    JasperCompileManager.compileReportToFile(inputFile, destinationFile);

    try

    String inputFile = 
    session.getServletContext().getRealPath("InputFile.jrxml");

    String destinationFile = 
    session.getServletContext().getRealPath("InputFile.jasper");

    File jasperFile = new File(destinationFile);

    if(environmentBeanFile.exists() == false)
    {
    JasperCompileManager.compileReportToFile(inputFile, destinationFile);
    }

     

     

  3. Hi. Is it possible to create a group inside a group in JasperSoft Studio?

    Currently I created a group so it displays the header and then the data. but I want to group the data again inside this group and to display the headers whenever a new subgroup is made.

×
×
  • Create New...