Home Answers Viewqa JSP-Servlet Statistical charts in JSP - problem

 
 


maithreyi
Statistical charts in JSP - problem
1 Answer(s)      2 years and 2 months ago
Posted in : JSP-Servlet

hey! i get this error when i run the code (with slight changes in query)!

HTTP Status 500 -

type Exception report

message

description The server encountered an internal error () that prevented it from fulfilling this request.

exception

org.apache.jasper.JasperException: Unable to compile class for JSP:

An error occurred at line: 9 in the generated java file Only a type can be imported. org.jfree.chart.ChartUtilities resolves to a package

An error occurred at line: 10 in the generated java file Only a type can be imported. org.jfree.chart.JFreeChart resolves to a package

An error occurred at line: 11 in the generated java file Only a type can be imported. org.jfree.chart.plot.PlotOrientation resolves to a package

An error occurred at line: 13 in the generated java file Only a type can be imported. org.jfree.data.jdbc.JDBCCategoryDataset resolves to a package

An error occurred at line: 11 in the jsp file: /BarChart.jsp JDBCCategoryDataset cannot be resolved to a type 8: <%@ page import="org.jfree.data.jdbc.JDBCCategoryDataset"%> 9: <% 10: String query="SELECT db2admin.NOMINALROLL.NARRESTS,db2admin.NOMINALROLL.FNAME FROM db2admin.NOMINALROLL"; 11: JDBCCategoryDataset dataset=new JDBCCategoryDataset("jdbc:db2://localhost:50000/FPARK","com.ibm.db2.jcc.DB2Driver","db2admin","admin"); 12: dataset.executeQuery(query); 13: JFreeChart chart = ChartFactory.createBarChart3D("Test", "name", "no of arrests", dataset, PlotOrientation.VERTICAL,true, true, false); 14: try

An error occurred at line: 11 in the jsp file: /BarChart.jsp JDBCCategoryDataset cannot be resolved to a type 8: <%@ page import="org.jfree.data.jdbc.JDBCCategoryDataset"%> 9: <% 10: String query="SELECT db2admin.NOMINALROLL.NARRESTS,db2admin.NOMINALROLL.FNAME FROM db2admin.NOMINALROLL"; 11: JDBCCategoryDataset dataset=new JDBCCategoryDataset("jdbc:db2://localhost:50000/FPARK","com.ibm.db2.jcc.DB2Driver","db2admin","admin"); 12: dataset.executeQuery(query); 13: JFreeChart chart = ChartFactory.createBarChart3D("Test", "name", "no of arrests", dataset, PlotOrientation.VERTICAL,true, true, false); 14: try

An error occurred at line: 13 in the jsp file: /BarChart.jsp JFreeChart cannot be resolved to a type 10: String query="SELECT db2admin.NOMINALROLL.NARRESTS,db2admin.NOMINALROLL.FNAME FROM db2admin.NOMINALROLL"; 11: JDBCCategoryDataset dataset=new JDBCCategoryDataset("jdbc:db2://localhost:50000/FPARK","com.ibm.db2.jcc.DB2Driver","db2admin","admin"); 12: dataset.executeQuery(query); 13: JFreeChart chart = ChartFactory.createBarChart3D("Test", "name", "no of arrests", dataset, PlotOrientation.VERTICAL,true, true, false); 14: try 15: { 16: org.jfree.chart.ChartUtilities.saveChartAsJPEG(new File("C:/chart.jpg"), chart, 400, 300);

An error occurred at line: 13 in the jsp file: /BarChart.jsp ChartFactory cannot be resolved 10: String query="SELECT db2admin.NOMINALROLL.NARRESTS,db2admin.NOMINALROLL.FNAME FROM db2admin.NOMINALROLL"; 11: JDBCCategoryDataset dataset=new JDBCCategoryDataset("jdbc:db2://localhost:50000/FPARK","com.ibm.db2.jcc.DB2Driver","db2admin","admin"); 12: dataset.executeQuery(query); 13: JFreeChart chart = ChartFactory.createBarChart3D("Test", "name", "no of arrests", dataset, PlotOrientation.VERTICAL,true, true, false); 14: try 15: { 16: org.jfree.chart.ChartUtilities.saveChartAsJPEG(new File("C:/chart.jpg"), chart, 400, 300);

An error occurred at line: 13 in the jsp file: /BarChart.jsp PlotOrientation.VERTICAL cannot be resolved to a type 10: String query="SELECT db2admin.NOMINALROLL.NARRESTS,db2admin.NOMINALROLL.FNAME FROM db2admin.NOMINALROLL"; 11: JDBCCategoryDataset dataset=new JDBCCategoryDataset("jdbc:db2://localhost:50000/FPARK","com.ibm.db2.jcc.DB2Driver","db2admin","admin"); 12: dataset.executeQuery(query); 13: JFreeChart chart = ChartFactory.createBarChart3D("Test", "name", "no of arrests", dataset, PlotOrientation.VERTICAL,true, true, false); 14: try 15: { 16: org.jfree.chart.ChartUtilities.saveChartAsJPEG(new File("C:/chart.jpg"), chart, 400, 300);

An error occurred at line: 16 in the jsp file: /BarChart.jsp org.jfree.chart.ChartUtilities cannot be resolved to a type 13: JFreeChart chart = ChartFactory.createBarChart3D("Test", "name", "no of arrests", dataset, PlotOrientation.VERTICAL,true, true, false); 14: try 15: { 16: org.jfree.chart.ChartUtilities.saveChartAsJPEG(new File("C:/chart.jpg"), chart, 400, 300); 17: } 18: catch (IOException e) 19: {

Stacktrace: org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:92) org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:330) org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:439) org.apache.jasper.compiler.Compiler.compile(Compiler.java:349) org.apache.jasper.compiler.Compiler.compile(Compiler.java:327) org.apache.jasper.compiler.Compiler.compile(Compiler.java:314) org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:592) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:326) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260) javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

note The full stack trace of the root cause is available in the Apache Tomcat/6.0.32 logs.

View Answers

March 25, 2011 at 3:10 PM


Before importing jfreechart package, you need to download the jfreechart api and put the jsr file inside the lib folder of apache tomcat. Then restart the tomcat server.









Related Pages:
java bar charts and jsp
java bar charts and jsp  Hi, Can any one help me out in how to create java bar charts using jsp with the help of data base table values? thanks.../jsp/draw-statistical-chart-jsp.shtml
Charts in JSP - JSP-Servlet
of charts in JSP.. So, Can i know the pre requirement for that? Do i need... the following link: http://www.roseindia.net/jsp/draw-statistical-chart...Charts in JSP  Hi Roseindia team, This is ragav.. I
Doubt regarding charts and jsp
-jsppage.shtml http://www.roseindia.net/jsp/draw-statistical-chart-jsp.shtml...Doubt regarding charts and jsp  Hi, I successfully executed... in web application(jsp). So,please help me out in how to connect the normal
statistical graph in jsp - JSP-Servlet
statistical graph in jsp  how to create a statistical graph to show the highest mark and the lowest mark of a table named test which consist of two fields id, and score is there any way to have the id's and the scores represented
generate charts using JSP
generate charts using JSP  any one know coding for generate bar chart or pie chart using JSP
java charts - JSP-Servlet
java charts  Hi,can any one tell me how to create dyanamic charts wrt database contents by using jsp-servlet
Bar charts and jsp
Bar charts and jsp  Hi, How to generate Dynamic Bar Chart Images using jsp with placing any image location in weebroots? Thanks in advance
Charts in JSP - JSP-Servlet
Charts in JSP  Hi, Thanks for replying for the chart query I made 2 days back.. Can u plz provide me an example for creating a series bar chart with the datas coming from the database? Series chart in the sense, If I have x
fusion charts
fusion charts  hi i have to use the fusion chart. i don't know how to use and code in jsp and i have to create the chart by using the data from db. please help me doing that with exapmles. thank you
Doubt regarding charts and jsp
Doubt regarding charts and jsp  Hi in the http://www.roseindia.net/chartgraphs/barchart-jsppage.shtml of the code (new StandardEntityCollection()); final File file1 = new File("../webapps/jspchart/web/barchart.png
java charts - Development process
java charts  Hi,i want to create charts wrt database by using jsp?please help me
java with jsp and dynamic database retrival for bar charts
java with jsp and dynamic database retrival for bar charts  Hi, I am having a table name tablelogin,it consists of columns userid,logintime,sessionid,ip_address,logout. so,can any one help me out how to get the bar chart
flow charts
flow charts   draw a flow chart program with a user prompt of 5 numbers computing the maximum, minimum and average
jree charts
jree charts  i have to use jfree charts how to download its api and where to keep it in jdk order to execute   Please visit the following link: Download JFreechart Download jfreechart-1.0.13.zip from the given link
Doubt Regarding Charts
Doubt Regarding Charts  Hi, Can you please help me out by answering "hoe to include charts in core java code and struts code" thanks in advance... charts and graphs
Merge XYLine and XYArea Charts
Merge XYLine and XYArea Charts  I wonder how to merge two charts... (this website) how to use two XYLine Charts and display them. Please, see screenshot... appreciate any help. Please, bear in mind I am new to charts plotting in java
Good Looking Java Charts and Graphs
Good Looking Java Charts and Graphs  Is there a java chart library that will generate charts and graphs with the quality of visifire or fusion charts? The JFreeChart graph quality is not professional looking. Unless it can
Introduction to Graphs and Charts
Introduction to Graphs and Charts       Why Charts and Graphs?  Graphs and Charts is the most efficient method for displaying information in a simple manner
Types of Graphs and Charts
Types of Graphs and Charts       There are many types of graphs and charts...; Pie Charts: A pie chart is a type of a circle graph normally used in showcasing
Flex with JSP
Flex with JSP  i want to draw chart in jsp page using flex. how can i do that? any solution??   Flex charts You can visit the following links: http://www.roseindia.net/tutorial/flex/flex4/components/charteffect.html
Bar Chart in JSP - JSP-Servlet
Bar Chart in JSP  Hi I am creating Bar chart using Jfree charts in JSP. Please advise me how to customize it. Like controlling the colors, width for each bar, showing values above the bar .  hi friend, Use
Create multiple pie chart in single frame using JFreeChart
you how to create a multiple pie charts in a single frame in jsp page using JFreeChart. Code given below creates a simple pie charts for given values
Charting - JSP-Servlet
Charting  Hi, This is Ragavendran.R.. I found that the drill down charts can be achieved through "CustomURLGenerator" in Jfreechart.. Can u provide me an example program for creating drill down for pie chart? Its very
Chart & Graphs Tutorials in Java
charts for given values.   Create a bar chart in JSP page using...;     Best collection of Graphs and Charts Tutorials... to Charts & Graphs Graphs and Charts is the most efficient method
Java - Jfreecharts - Java Beginners
? Pls tell me how to create dynamic charts wrt dbase using jfreecharts... you can visit to the following page : http://www.roseindia.net/jsp/draw-statistical-chart-jsp.shtml I hope that these both links will help you
Charting - JSP-Servlet
Charting  Hi, This is Ragavendran.R.. I have used jfreechart and i am able to get the data from the database, But now i am looking for drill down charts to be applied in my application.. For example, if i click on pie chart
Sitemap JSP Tutorial Section
Chart in JSP | Draw Statistical chart in jsp | Paging Example in Datagrid JSP... Map | Business Software Services India JSP Tutorial Section  Intro to JSP | JSP Technology | JSP Architecture | JSP Actions | JSP tags
Java and JSP help
Java and JSP help  I have a website, on my website i have made a form...;title>JSP Form</title> <style> </style>... they choose a statistical summary report providing, at that very point in time, from all
Java and JSP help
Java and JSP help  I have a website, on my website i have made a form...;title>JSP Form</title> <style> </style>... they choose a statistical summary report providing, at that very point in time, from all
Java and JSP help
Java and JSP help  I have a website, on my website i have made a form...;title>JSP Form</title> <style> </style>... they choose a statistical summary report providing, at that very point in time, from all
Java and JSP help
Java and JSP help  I have a website, on my website i have made a form...;title>JSP Form</title> <style> </style>... they choose a statistical summary report providing, at that very point in time, from all
Java and JSP help
Java and JSP help  I have a website, on my website i have made a form...;title>JSP Form</title> <style> </style>... they choose a statistical summary report providing, at that very point in time, from all
Java and JSP help
Java and JSP help  I have a website, on my website i have made a form...;title>JSP Form</title> <style> </style>... they choose a statistical summary report providing, at that very point in time, from all
Java and JSP help
Java and JSP help  I have a website, on my website i have made a form...;title>JSP Form</title> <style> </style>... they choose a statistical summary report providing, at that very point in time, from all
Java and JSP help
Java and JSP help  I have a website, on my website i have made a form...;title>JSP Form</title> <style> </style>... they choose a statistical summary report providing, at that very point in time, from all
Java and JSP help
Java and JSP help  I have a website, on my website i have made a form...;title>JSP Form</title> <style> </style>... they choose a statistical summary report providing, at that very point in time, from all
Java and JSP help
Java and JSP help  I have a website, on my website i have made a form...;title>JSP Form</title> <style> </style>... they choose a statistical summary report providing, at that very point in time, from all
Java and JSP help
Java and JSP help  I have a website, on my website i have made a form...;title>JSP Form</title> <style> </style>... they choose a statistical summary report providing, at that very point in time, from all
Java and JSP help
Java and JSP help  I have a website, on my website i have made a form...;title>JSP Form</title> <style> </style>... they choose a statistical summary report providing, at that very point in time, from all
Java and JSP help
Java and JSP help  I have a website, on my website i have made a form...;title>JSP Form</title> <style> </style>... they choose a statistical summary report providing, at that very point in time, from all
JSP
what is JSP forward tag for  what is JSP forward tag for   It forwards the current request to another JSP page. Below is the syntax for the same:- <jsp:forward page="...url..." /> We can also forward parameter
jsp
jsp  how to include two jsp page
jsp
jsp  how jsp translated into servlets
JSP
JSP  How to run jsp program in eclipse
jsp
jsp  how to create jsp page
Jsp
Jsp  Can I implement interface in jsp
jsp
jsp  write a code for jsp file generator to generate a jsp page automatically taking html page as input
jsp
jsp  how to create a table in oracle using jsp and the table name is entered in text feild of jsp page

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.