为了在 Lucene 索引中搜索,我通过 JSP 中的 Web 用户界面捕获了用户的查询。在 JSP 中,我编写了简短的 JAVA 代码来解析查询并调用 Lucene 索引搜索器来搜索查询。但问题是它反复给出编译错误,因为“无法解析查询,无法解析 MultiFieldQueryParser ...”。所以没有一个 Lucene 类得到解决。代码如下:
文件名:result.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" import="java.util.*,java.io.*,org.apache.lucene.*" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%! String query; %>
<%
query=request.getParameter("myQuery");
%>
<form name="frm" method="post" action="result.jsp">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="22%"> </td>
<td width="78%"> </td>
</tr>
<tr>
<td> </td>
<td><input type="text" name="myQuery" placeholder="Type here"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="submit" value="Submit"></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</form>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
Directory dir=new FSDirectory.open(new File(path of index directory));
QueryParser parser=new MultiFieldQueryParser(Version.LUCENE_30, new String[]
{"title","address","city"},new BooleanClause.Occur[]{BooleanClause.Occur.MUST,
BooleanClause.Occur.SHOULD, BooleanCaluse.Occur.SHOULD},new StandardAnalyzer());
Query query=parser.parse(query);
IndexSearcher searcher=new Indexsearcher(dir,true);
TopDocs hits=searcher.search(query,20);
searcher.close();
dir.close();
%>
<p>Query phrase is : <%=query%></p>
</body>
</html>
我不明白为什么即使在上面导入了 Lucene 之后,任何 Lucene 类都没有得到解决。所以我问是否有人可以帮我修复上面的代码。谢谢你。