请教lucene中一个deprecated函数的问题
在lucene包中的FSDirectory类的函数getDirectory(),在lucene 2.0.0以上版本都声明不赞成这个函数的使用,API文档中说明
Use IndexWriter's create flag, instead, to create a new index.
字面上的意思我懂,但实际中怎样用新的函数代替它我就不懂了难道用IndexWriter的构造函数IndexWriter(File path, Analyzer a, boolean create)
来代替吗,但是其构造函数又不返回FSDirectory类,请达人指教,谢谢
[解决办法]
FSDirectory.getDirectory的有两个参数的变成了depresed 了。现在要用只有一个参数的。