当前位置: 首页 > 工具软件 > PyLucene > 使用案例 >

pylucene构建索引_尝试创建FSDirectory时PyLucene中的InvalidArgsError

长孙知
2023-12-01

所以我尝试在PyLucene中实现一个基本的索引编写器。我通常是一个java开发人员,但是由于技术限制,我用python来做这件事,否则这不会是个问题。我在跟踪皮路塞纳柏油的样本但是import lucene

from java.io import File

from org.apache.lucene.analysis.standard import StandardAnalyzer

from org.apache.lucene.document import Document, Field

from org.apache.lucene.index import IndexWriter, IndexWriterConfig

from org.apache.lucene.store import SimpleFSDirectory

from org.apache.lucene.util import Version

from org.apache.lucene.store import IOContext

lucene.initVM()

fl = File('index')

indexDir = SimpleFSDirectory(fl)

writerConfig = IndexWriterConfig(Version.LUCENE_6_4_1, StandardAnalyzer())

当我运行以下错误时:

^{pr2}$

我检查了Java代码here,似乎有一个构造器public SimpleFSDirectory(File path),看起来这就是我在回溯错误中传递的内容。我是否遗漏了jcc中的某些内容?在

这是使用lucene6.4.1,我可以成功地导入Lucene和jcc。在

 类似资料: