So I am trying to make the following code work "https://github.com/jintrone/TEVA", only problem is that I am a Java newbie. At first I got compilation error "it.uniroma1.dis.wsngroup.gexf4j.core does not exist" which I solved by downloading and adding gexf4j jar into the ./lib/ folder. Now the compilation is successful but I get:
Exception in thread "main" java.lang.NoClassDefFoundError: com/csvreader/CsvReader
The file I get this from does the following import com.csvreader.*;
I downloaded opencsv-2.4.jar
and opencsv-3.7.jar
and put them in lib but to no avail (also, lib already contains javacsv.jar
). I tried to modify the code to import opencsv.csvreader
, import au.com.csvreader'...
only to get error: package ... does not exist
.
Anyone have an idea? these lang issues are tough on a newbie.
Thank you all