简体   繁体   中英

Which version jfreechart and jcommon jar files should I use for JDK 1.6

I am working on one web application with following software specification

jdk 1.6
netbeans 6.8
postgres 9.0.x..

Which version of jfreechart and jcommon jar files should I use?Please help me.Thank you..

JFreeChart需要JDK 1.3,因此您可以使用最新版本。

These are my Maven dependencies for jfreechart and jcommon. they work fine with 1.6:

<dependency>
      <groupId>org.jfree.chart</groupId>
      <artifactId>jcommon</artifactId>
      <version>1.0.15</version>
</dependency>
<dependency>
      <groupId>org.jfree.chart</groupId>
      <artifactId>jfreechart</artifactId>
      <version>1.0.12</version>
</dependency>

Not saying that only these will work but these are live and running for months for me.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM