我已經編寫了下面的代碼來創建jasper報告,這段代碼在NetBeans IDE中正常工作,但是在創建該項目的jar文件之後,報告未打開。它也沒有顯示任何錯誤。製作jar文件後Jasper報告不工作
可能是什麼問題?
代碼創建碧玉報告
//Path to your .jasper file in your package
String reportSource = "src/report/Allvendor_personal_info.jrxml";
try
{
jasperReport = (JasperReport)
JasperCompileManager.compileReport(reportSource);
jasperPrint = JasperFillManager.fillReport(jasperReport, null, con);
//view report to UI
JasperViewer.viewReport(jasperPrint, false);
con.close();
}
catch(Exception e)
{
JOptionPane.showMessaxgeDialog(null, "Error in genrating report");
}
路徑'src'不會在運行時存在,你永遠不應該引用它 – MadProgrammer