Author
Problem with Jasper report
Bojan Ivkovic
Greenhorn
Joined: May 17, 2009
Posts: 7
posted May 17, 2009 02:54:35
0
Hi,
Can anybody help me?
when i try to run my jasper report from java code, I get this message: java.lang.NullPointerException
My code is:
public class ReportO1 {
public static Connection connectDB() {
Connection jdbcConnection = null;
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
jdbcConnection = DriverManager
.getConnection("jdbc dbc:baza","Administrator","SuperAdmin");
} catch (Exception ex) {
String connectMsg = "Could not connect to the database: "
+ ex.getMessage() + " " + ex.getLocalizedMessage();
System.out.println(connectMsg);
}
return jdbcConnection;
}
public static void runReport(String datum) {
Map model = new HashMap ();
model.put("datum", datum);
try {JasperReport jasperReport = (JasperReport) JRLoader.loadObject("report01.jasper");
System.out.println(2);
Connection jdbcConnection = connectDB();
System.out.println(3);
JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, model, jdbcConnection);
System.out.println(4);
JasperViewer.viewReport(jasperPrint, false);
} catch (Exception ex) {
System.out.print(ex);
}
}
}
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35243
posted May 17, 2009 05:11:35
0
Please do not post the same question to multiple forums: CarefullyChooseOneForum
Let's continue the discussion in this duplicate thread .
Android apps – ImageJ plugins – Java web charts
subject: Problem with Jasper report