How can I compile the source files of JFreeChart?

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
linsilly

How can I compile the source files of JFreeChart?

Post by linsilly » Tue Jul 23, 2002 2:10 am

Hi there,

I just want to ask what should I do after unzipping the JFreeChart.
Which is the first file for me to compile ?

I look forward to hearing from you.

Thank you

David Gilbert

Re: How can I compile the source files of JFreeChart?

Post by David Gilbert » Tue Jul 23, 2002 5:05 am

You should download the file jfreereport-0.9.2-install.pdf, it contains instructions for what to do next.

Regards,

DG.

Phillip

Re: How can I compile the source files of JFreeChart?

Post by Phillip » Wed Jul 24, 2002 11:53 pm

You don't need to compile anything. Assuming that you unzipped your zip file to C:\JFreeChartDemo-0.9.2 you will have a subdirectory \Jars. The Jar files contain the classes and all that compiled stuff.

You would probably want to run the demo at this point. To do so from a command prompt, type:

C:\JFreeChart\Jars>java -classpath jcommon-0.6.4.jar;jfreechart-0.9.2.jar;jfreechart-0.9.2-demo.jar com.jrefinery.chart.demo.JFreeChartDemo

All of this on one line and it seems to be case-sensitive. I just went through this whole rigga-ma-roe so it should work. Let me know if it worked.

reji

Re: How can I compile the source files of JFreeChart?

Post by reji » Thu Jul 25, 2002 7:38 am

Hi,

If you want to recompile JFreeChart source files, then it is better to open a project in any of your Java visual development tools like JBuilder or VisualAge, and add these source to the opened project and compile..

Keep that project always with you and make changes on every new version release time..

Thanks David and Team for this wonderfull package..

From Korea

linsilly

Re: How can I compile the source files of JFreeChart?

Post by linsilly » Sat Jul 27, 2002 3:56 am

Yes, I can run the demo.
Thanks all of you for replying me.

Locked