Hi everybody
i'm trying a new report project. I've created the .jrxml file with ireport. And now i'm trying to integrate in java but there are some problems:
JasperReport jasperreport = JasperCompileManager.compileReport("C:/Users/andros/20130505/aManager/src/report/report.jrxml");
not works !!
Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
I've tryed
File file = new File("C:/Users/andros/20130505/aManager/src/report/report.jrxml");
FileInputStream fis = new FileInputStream(file);
JasperReport jasperreport = JasperCompileManager.compileReport(fis);
not works too !!!
Help me
thanx