我是新來的android和我想要一個應用程序檢查句子與句子的匹配。爲此,我使用stanford tregex工具,並將4個jar文件包括到我的項目庫中。在運行時我得到了一個錯誤,在控制檯告訴無法執行dex:多個dex文件定義Ledu/stanford/nlp/graph/Connected Components ...我不知道爲什麼......我需要爲此做些什麼.. 。請解釋無法執行dex:多個dex文件定義Ledu/stanford/nlp/graph/ConnectedComponents
TregexPattern objTregexPattern=TregexPattern.compile("hi a am yureka");
Tree objTree2=newLeaf("my name is yureka which is a new word");
TregexMatcher objTregexMatcher=objTregexPattern.matcher(objTree2);
if(objTregexMatcher.find()){
Toast.makeText(this,"Match found", Toast.LENGTH_LONG).show();
}
else{
Toast.makeText(this,"Match not found", Toast.LENGTH_LONG).show();
}
yes..got it但是我在上面的代碼中出現了一些錯誤......你能告訴哪個工具用來找到特定句子對應句子的匹配百分比.....請幫我。 ..是該工具是在斯坦福軟件,.... – FaKe 2014-09-02 11:34:55