其他分享
首页 > 其他分享> > Lucene demo演示搜索查询歌手,歌名,歌词

Lucene demo演示搜索查询歌手,歌名,歌词

作者:互联网

1.导入pom jar文件

<dependency>
            <groupId>org.apache.lucene</groupId>
            <artifactId>lucene-core</artifactId>
            <version>8.11.1</version>
        </dependency>
        <dependency>
            <groupId>org.apache.lucene</groupId>
            <artifactId>lucene-queryparser</artifactId>
            <version>8.11.1</version>
        </dependency>
        <dependency>
            <groupId>org.apache.lucene</groupId>
            <artifactId>lucene-analyzers-common</artifactId>
            <version>8.11.1</version>
        </dependency>

<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.62</version>
</dependency>

2. 

LuceneService.java类
import com.alibaba.fastjson.JSONObject;
import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.analysis.standard.StandardAnalyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.document.TextField;
import org.apache.lucene.index.*;
import org.apache.lucene.queryparser.classic.ParseException;
import org.apache.lucene.queryparser.classic.QueryParser;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.ScoreDoc;
import org.apache.lucene.search.TopDocs;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.FSDirectory;

import java.io.IOException;
import java.nio.file.Paths;
import java.util.List;
import java.util.Set;

public class LuceneService {
    public static void main(String[] args) throws IOException, ParseException {
        String indexDir = "D://temp//lucence_data//products";
        //创建索引
//        createIndex(indexDir);

        //中文搜索不出来
        String jsonDoc = "{\"songName\":\"hello world is chinese\",\"songer\":\"liudehua hk\",\"lyrics\":\"lyricslyricslyricslyrics 2022\"}";
//        String jsonDoc = "{\"aaa\":\"111\"}";
        indexDoc(indexDir,jsonDoc,"chinese");

    }

    //创建索引
    private static void createIndex(String indexDir) throws IOException {
        //准备目录
        Directory dir  = FSDirectory.open(Paths.get(indexDir));
        //准备分词器
        Analyzer analyzer = new StandardAnalyzer();
        //配置
        IndexWriterConfig iwConfig = new IndexWriterConfig(analyzer);
        //创建索引
        IndexWriter iw = new IndexWriter(dir,iwConfig);
        //关闭索引
        iw.close();
    }

    private static void indexDoc(String indexDir,String jsonDoc,String queryStr) throws IOException, ParseException {
        //准备目录
        Directory dir  = FSDirectory.open(Paths.get(indexDir));
        //准备分词器
        Analyzer analyzer = new StandardAnalyzer();
        //配置
        IndexWriterConfig iwConfig = new IndexWriterConfig(analyzer);
        //创建索引
        IndexWriter iw = new IndexWriter(dir,iwConfig);
        //json转document对象
        Document doc = Json2Doc(jsonDoc);
        iw.addDocument(doc);


        //IndexReader实例
        IndexReader ir = DirectoryReader.open(dir);
        IndexSearcher searcher = new IndexSearcher(ir);

        //查询索引
        QueryParser parser = new QueryParser("songName",analyzer);
        Query query = parser.parse(queryStr);

        TopDocs hits = searcher.search(query,10);
        String result = "结果=";
        for (ScoreDoc scoreDoc : hits.scoreDocs){
            //拿到文档
            Document rdoc = searcher.doc(scoreDoc.doc);
            List<IndexableField> fields = rdoc.getFields();
            for (IndexableField f : fields){
                result += f.name() + ":"+f.stringValue()+",\r\n";
            }
            System.out.println("result=" + result);
        }
        System.out.println("总的查询结果result=" + result);
        ir.close();

        //关闭索引
        iw.close();
    }

    /**
     *输出结果
     总的查询结果result=结果=songName:hello world is chinese,
     lyrics:lyricslyricslyricslyrics 2022,
     songer:liudehua hk,
     *
     */

    private static Document Json2Doc(String jsonDoc) {
        Document doc = new Document();
        JSONObject jsonObject = JSONObject.parseObject(jsonDoc);
        Set<String> keys = jsonObject.keySet();
        for (String key : keys){
            doc.add(new TextField(key, jsonObject.getString(key), Field.Store.YES ));
        }
        return doc;
    }



}

 3.本地目录生成的文件

 

标签:lucene,String,demo,歌名,new,Lucene,org,apache,import
来源: https://www.cnblogs.com/oktokeep/p/16361864.html