i wont to create report in jruby using jasper report i able to access java lib in jruby but i have problem with include jar file for jasper report

how to access jar file class in jruby ? how to make object of jasperreport in jruby

this code for java but i wont to implement in jruby so help me to do this ...

    JasperReport jasperReport;
    JasperPrint jasperPrint;
    HashMap jasperParameter = new HashMap();
    jasperReport = JasperCompileManager.compileReport("C://report2.jrxml");
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    Connection conn = null;conn = DriverManager.getConnection("jdbc:mysql://localhost/productexample_development","root","");
jasperPrint = JasperFillManager.fillReport(jasperReport,jasperParameter, conn); 
JasperExportManager.exportReportToPdfFile(jasperPrint, "C://sample_report.pdf");
JasperExportManager.exportReportToHtmlFile(jasperPrint, "C://sample_report.HTML");
link|improve this question

35% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.