当前位置: 代码迷 >> Eclipse >> lucene基础有关问题
  详细解决方案

lucene基础有关问题

热度:94   发布时间:2016-04-23 14:15:36.0
lucene基础问题
RAMDirectory ram=new RAMDirectory();
IndexWriter indexWriter = new IndexWriter(ram,new StandardAnalyzer(),true); 
错误为:Default constructor cannot handle exception type LockObtainFailedException 
 thrown by implicit super constructor. Must define an explicit constructor
和书本上代码一样,怎么会有错误?

------解决方案--------------------
需要处理 LockObtainFailedException 这个异常
  相关解决方案