Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on Jasper Reports using IReport. I want to convert the amount to Words such as 1500 to One thousand five hundred. I retrieve the numbers from the database and print it on the report. At the end I want the final value to be converted to Words. Is there any method in Jasper Reports to do this. I have found a Java class to do that. If there's any method in Jasper report, how can I call Java method from jasper report to convert the numbers to letters

Please help asap. Its kinda urgent

Thanks

Best Regards,

Mujahid

share|improve this question

3 Answers

No. There is not such method in JasperReports.

I'd think you'd have to calculate the "final value" in Java, convert it and pass that as a parameter to the report.

share|improve this answer

This is the code which converts number to words in java but i think there is no such method...

share|improve this answer

You can use scriptlet to solve your problem. The samples is here and here.

The sample:

  • the scriptlet class extended JRDefaultScriptlet:

    public class ReportScriptlet extends net.sf.jasperreports.engine.JRDefaultScriptlet 
    
        public static String convertIntToWords(int value) {
    
            IConverter converter = new ConverterImpl(value);
    
            return converter.convert();
        }
    }
    

  • set scriptlet in report and its usage:

    <jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" ...
    scriptletClass="package.ReportScriptlet">  
    
    ...
    
       <textFieldExpression><![CDATA[$P{REPORT_SCRIPTLET}.convertIntToWords($F{sum})]]></textFieldExpression>
    
  • share|improve this answer

    Your Answer

     
    discard

    By posting your answer, you agree to the privacy policy and terms of service.

    Not the answer you're looking for? Browse other questions tagged or ask your own question.