I have to run the well-known java-based Cooja simulator, extended with some classes I've made, under Ubuntu 12.04. In my java file I recall the jfreechart packages:
import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.axis.NumberAxis;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.renderer.xy.XYLineAndShapeRenderer;
import org.jfree.data.xy.XYDataset;
import org.jfree.data.xy.XYSeries;
import org.jfree.data.xy.XYSeriesCollection;
import org.jfree.ui.ApplicationFrame;
import org.jfree.chart.axis.ValueAxis;
I run the simulator with this command:
$ ant run_bigmem
and then some exceptions pop up:
compile:
[javac] Compiling 44 source files to /home/user/contiki_copy/tools/cooja/build
[javac] /home/user/contiki_copy/tools/cooja/java/se/sics/cooja/plugins/sixlowpan_metrics/Chart.java:7: error: package org.jfree.chart does not exist
[javac] import org.jfree.chart.ChartFactory;
[javac] ^
[javac] /home/user/contiki_copy/tools/cooja/java/se/sics/cooja/plugins/sixlowpan_metrics/Chart.java:8: error: package org.jfree.chart does not exist
[javac] import org.jfree.chart.ChartPanel;
[javac] ^
[javac] /home/user/contiki_copy/tools/cooja/java/se/sics/cooja/plugins/sixlowpan_metrics/Chart.java:9: error: package org.jfree.chart does not exist
[javac] import org.jfree.chart.JFreeChart;
.
.
.
and so on..
Then I've modified the file: /home/user/.bashrc and I've added the following lines:
export CLASSPATH=.:/home/user/contiki_copy/tools/cooja/lib/jfreechart-1.0.11.jar:/home/user/contiki_copy/tools/cooja/lib/jcommon-1.0.14.jar
Then, from the prompt, I enter:
$ echo $CLASSPATH to see if the environment variable has been entered properly and I get, in fact:
user@ubuntu:~/contiki_copy/tools/cooja$ echo $CLASSPATH
.:/home/user/contiki_copy/tools/cooja/lib/jfreechart-1.0.11.jar:/home/user/contiki_copy/tools/cooja/lib/jcommon-1.0.14.jar
Despite all these efforts nothing has changed and I still get the error..dunno what to do, really, any ideas?
I guess the crucial part of the build.xml file is the following:
<target name="run_bigmem" depends="init, compile, jar, copy configs">
<java fork="yes" dir="${build}" classname="se.sics.cooja.GUI" maxmemory="1536m">
<arg line="${args}"/>
<env key="LD_LIBRARY_PATH" value="."/>
<classpath>
<pathelement path="${build}"/>
<pathelement location="lib/jdom.jar"/>
<pathelement location="lib/log4j.jar"/>
<pathelement location="lib/jsyntaxpane.jar"/>
<pathelement location="lib/jfreechart-1.0.11.jar"/>
<pathelement location="lib/jcommon-1.0.14.jar"/>
</classpath>
</java>
I've all the jars in the directory: /home/user/contiki_copy/tools/cooja/lib and I'm running everything inside the directory: /home/user/contiki_copy/tools/cooja.
user@ubuntu:~/contiki_copy/tools/cooja$ ant -lib /home/user/contiki_copy/tools/cooja/lib/jcommon-1.0.14.jar -lib /home/user/contiki_copy/tools/cooja/lib/jfreechart-1.0.11.jar run_bigmemnothing has changed.. – user1405417 Feb 22 at 17:13