我是新來的java,我試圖使用word net進行信號分析。 當我用類共發現的,我得到了以下故障進口爲什麼有些進口無法解決?
import org.apache.felix.scr.annotations.Activate;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Deactivate;
import org.apache.felix.scr.annotations.Reference;
import org.apache.lucene.analysis.en.EnglishMinimalStemmer;
import org.apache.stanbol.commons.stanboltools.datafileprovider.DataFileListener;
import org.apache.stanbol.commons.stanboltools.datafileprovider.DataFileTracker;
import org.apache.stanbol.enhancer.engines.sentiment.api.LexicalCategoryClassifier;
import org.apache.stanbol.enhancer.engines.sentiment.api.SentimentClassifier;
import org.apache.stanbol.enhancer.engines.sentiment.util.WordSentimentDictionary;
import org.apache.stanbol.enhancer.nlp.pos.LexicalCategory;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceRegistration;
import org.osgi.service.component.ComponentContext;
上述所有進口解決不了像org.apache.felix
,org.apache.lucene
,org.apache.stanbol
,org.osgi
它們是否在您的項目結構中?班級路徑? – Li357
我該如何檢查? – user1
如果您確實依賴Maven並安裝了Eclipse Maven插件(m2e),則可以將依賴項添加到您的pom.xml文件中。否則,這應該運行在什麼樣的環境?我看到提及的Maven,但也是OSGI, – nitind