1. Cannot export PDF File (Jasper reprting) coderanch.compublic class Main { String reportSource = "./report/payment_report.jrxml"; String reportDest = "./report/Hello.pdf"; public static void main(String[] args) { Main m = new Main(); try { m.add(); } catch (JRException ex) { Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex); } } public void add() throws JRException { Map |