我有一个使用lucene 3.6.2库的桌面应用程序 搜索java derby数据库中的多个字段。 当为搜索输入单词时,lucene系统返回 匹配这个词。另一方面,当我输入一个字符串时 不是一个完整的词,而是一个更大的词lucene返回 没有匹配的字符串。
例如: “national”返回可用的匹配
但字符串“natio”不会返回任何结果。
我希望能够输入一个字符串
“natio”然后lucene将返回所有“natio *”作为匹配结果。
下面的是应用程序的代码片段。
this is a the code that creates the lucene in-memory director
Directory index = new RAMDirectory();
StandardAnalyzer analyzer = new StandardAnalyzer(matchVersion);
IndexWriterConfig IWConfig = new IndexWriterConfig(Version.LUCENE_36, analyzer);
IndexWriter iw = new IndexWriter(index,IWConfig) ;
//Connection to DB
con = DriverManager.getConnection(host, uName, uPass);
Statement stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
String sql = "SELECT * FROM APP.REGISTRY";
rs = stmt.executeQuery(sql);
//creating the docuetns
rs.beforeFirst();
while(rs.next()) {
doc = new Document();
doc.add(new Field("subject",rs.getString("SUBJECT"),Field.Store.YES,Field.Index.ANALYZED));
doc.add(new Field("letter_from",rs.getString("LETTER_FROM"),Field.Store.YES,Field.Index.ANALYZED));
iw.addDocument(doc);
}
//Oen the index
IndexReader ir = IndexReader.open(index);
//create the searcher object
IndexSearcher searcher = new IndexSearcher(ir);
QueryParser queryParser = new MultiFieldQueryParser(Version.LUCENE_36,
new String[]{"subject","letter_from","remarks","office_dispatched_to"}, analyzer);
Query query = queryParser.parse(qString);