Hi,
I am having problem calling Jasper report from servlet.
When I run the following program in main method, it works fine.
But when do public void displayReport(), and calls it from a servlet,
I got an Exception that
net.sf.jasperreports.engine.JRException: java.io.FileNotFoundException: reports\report.jrxml (The system cannot find the path specified)
Any Idea why I am getting an exception that file not found?
endswel shui
Ranch Hand
Joined: Jul 03, 2008
Posts: 33
posted
0
try to use the request.getRealPath("/")
getServletContext().getRealPath("/");
this.getClass().getClassLoader().getResource("").getPath();
and analyze and reorganize it