I have downloaded the latest version of JFreeChart (1.0.14) and want to start using it. I only have imported standard Java packages like java.io.* before and never dealt with 3rd party libraries. What do I need to tell jGRASP so it knows about and can access the JFreeChart library? I have tried to import it like this import org.jfree.chart.ChartFactory; but getting the following error java:1: package org.jfree.chart does not exist.

link|improve this question

72% accept rate
1  
Did you add JFreeChart jar to the classpath (or buildpath of jGRASP)? – naresh Jan 27 at 3:30
feedback

2 Answers

up vote 1 down vote accepted

You have to add a librarie's jar file into both compile-time and run-time CLASSPATH. In jGRASP you can do it through "Settings > PATH/CLASSPATH > Workspace" dialog. See HOWTO, Control Panel and Settings for more details.

link|improve this answer
Thanks - I added all the jar files in the JFreeChart folder. And now I don't get any errors. – razshan Jan 31 at 17:05
feedback

By adding both jar libraries: \jfreechart-1.0.14\lib\jfreechart-1.0.14.jar and \jfreechart-1.0.14\lib\jcommon-1.0.17.jar into CLASSPATH, you will be able to use the library straight forward.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.