我正在尝试使用以下代码获取一组文档的 tf:
IndexReader r = IndexReader.open(FSDirectory.open(new File("index")));
TermFreqVector tfv = r.getTermFreqVector(root[i],"contents"); // where root[] contains the
document IDs of the documents in my corpus
我不断收到空指针异常。谁能告诉我这里可能出了什么问题?我使用的是 Lucene 3.6.2,是否有确保在索引时启用 termFreqVector?