Versuche folgendermaßen eine vorkompilierte Jasper-Datei zu laden um Zeit zu sparen.
File temp = new File("src/reports/JR_Lieferung.jasper");
JasperReport report = (JasperReport)JRLoader.loadObject(temp);
Ich bekomme folgende Exception:
Exception in thread "main" java.lang.RuntimeException: net.sf.jasperreports.engine.JRException: Error loading object from file : src\reports\JR_Lieferung.jasper
at de.arvatologistics.pclexport.ExportMain.printParameters(ExportMain.java:139)
at de.arvatologistics.pclexport.ExportMain.getMap(ExportMain.java:409)
at de.arvatologistics.pclexport.ExportMain.main(ExportMain.java:502)
Die Pfadangabe ist richtig, habe ich mit temp.isFile() überprüft.
Hoffe mir kann jemand helfen......
File temp = new File("src/reports/JR_Lieferung.jasper");
JasperReport report = (JasperReport)JRLoader.loadObject(temp);
Ich bekomme folgende Exception:
Exception in thread "main" java.lang.RuntimeException: net.sf.jasperreports.engine.JRException: Error loading object from file : src\reports\JR_Lieferung.jasper
at de.arvatologistics.pclexport.ExportMain.printParameters(ExportMain.java:139)
at de.arvatologistics.pclexport.ExportMain.getMap(ExportMain.java:409)
at de.arvatologistics.pclexport.ExportMain.main(ExportMain.java:502)
Die Pfadangabe ist richtig, habe ich mit temp.isFile() überprüft.
Hoffe mir kann jemand helfen......
Zuletzt bearbeitet: