I downloaded the JAR for the LingPipe language tool. (http://alias-i.com/lingpipe) I added some import statements as per their tutorial file here (http://alias-i.com/lingpipe/demos/tutorial/sentiment/src/PolarityBasic.java).
Now I go to compile with:
javac -cp <PATH_TO>/lingpipe-4.1.0.jar:. LingPipeTester.java
After doing this I get errors on the import statments, such as:
LingPipeTester.java:4: package com.aliasi.classify does not exist
import com.aliasi.classify.Classified;
What am I doing wrong here? Thanks for your help.
-verbose:class
which will output all class loading. See if your class is being loaded (sounds like not). – Steve Kuo-verbose:class
is a runtime switch (java
). I see that you are trying to compile. In that case I'd check your path to the lingpipe jar. – Steve Kuo