0

为了在 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%">&nbsp;</td>
<td width="78%">&nbsp;</td>
</tr>
<tr>
<td>&nbsp; </td>
<td><input type="text" name="myQuery" placeholder="Type here"></td>
</tr>
<tr>
<td>&nbsp;</td>
<td><input type="submit" name="submit" value="Submit"></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</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 类都没有得到解决。所以我问是否有人可以帮我修复上面的代码。谢谢你。

4

1 回答 1

2

经验法则:导入 abc.xyz.* 只会导入包 abc.xyz 中的所有类,但不会导入包 abc.xyz.ijk 中的类。

例如:“org.apache.lucene.*”不会导入“org.apache.lucene.store.Directory”

要解决上述错误,请导入以下包/类。

1)“org.apache.lucene.store.Directory”或“org.apache.lucene.store.*”

2)“org.apache.lucene.queryParser.QueryParser”

3)“org.apache.lucene.queryParser.MultiFieldQueryParser”

4)“org.apache.lucene.search.BooleanClause”

5)“org.apache.lucene.analysis.standard.StandardAnalyzer”

6) org.apache.lucene.search.TopDocs

7) org.apache.lucene.search.IndexSearcher

我可能错过了一两节课。只需遵循“经验法则”并使用全长包名称导入缺失的类。

顺便说一句,永远不要在 JSP 中使用 scriptlet,即在 JSP 中直接使用 Java 代码。这是一个不好的方法。

您可以找到其他资源来更好地理解它。

于 2013-03-30T18:01:04.313 回答