lucene创建索引时出错:扑捉到FileNotFoundException

 lucene创建索引文件出错,如下图:


lucene创建索引时出错:扑捉到FileNotFoundException_第1张图片

解决方案:

解锁即可

代码如下:

  bool isUpdate = IndexReader.IndexExists(directory);
            if (isUpdate)
            {
                //如果索引目录被锁定(比如索引过程中程序异常退出),则首先解锁
                if (IndexWriter.IsLocked(directory))
                {
                    IndexWriter.Unlock(directory);

                }
            }


你可能感兴趣的:(lucene创建索引时出错:扑捉到FileNotFoundException)