lucene教程 之建立,查找,删除索引

本文深入探讨了基于Java的Lucene全文搜索系统的原理及应用,包括索引创建、查询索引过程,以及如何实现数据库和文件内容的索引建立。详细介绍了查找索引和删除索引的方法,并通过示例代码展示实际操作。
     lucene 是基于JAVA的全文搜索,具体原理是索引创建----查询索引,具体如下图:



建立索引分为数据库和文件两种:
其中在数据库中建立索引如下:

Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_46);
Directory dire = FSDirectory.open(new File("E:\\work_inspur\\lucene\\index"));//索引存放位置。
IndexWriterConfig iwc = new IndexWriterConfig(Version.LUCENE_46,   analyzer); 
 IndexWriter iw = new IndexWriter(dire, iwc);
.........................................................................连接数据库查询,rs为查询result...............................................................................
//将查询结果放入索引
 while (rs.next()) {
   Document doc = new Document();
   doc.add(new TextField("mc", rs.getString("swjg_jc"), Store.YES));
   iw.addDocument(doc);
  }
iw.commit();//提交;
iw.close(); // 关闭读写器

第二种为文件内容的索引建立:

Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_46);
Directory dire = FSDirectory.open(new File("E:\\work_inspur\\lucene\\index"));//索引存放地址
IndexWriter iw = new IndexWriter(dire, iwc);
File root = new File("E:\\work_inspur\\lucene\\test");//原文件存储地址
showAllFiles(root, iw);//自己编写的加载索引方法,具体代码如下
iw.commit();

public static void  showAllFiles(File dir,IndexWriter iw) throws Exception {
  File[] fs = dir.listFiles();
  for (int i = 0; i < fs.length; i++) {
   if (fs[i].isDirectory()) {
    try {
     showAllFiles(fs[i],iw);
    } catch (Exception e) {
    }
   }else{
    Document doc=new Document();
    String content=getContent(fs[i]); //getContent为读取文件为荣,通过FileInputStream进行操作
    String name=fs[i].getName();
    String path=fs[i].getAbsolutePath();
    doc.add(new TextField("content", content, Store.YES));
    doc.add(new TextField("name", name, Store.YES));
    doc.add(new TextField("path", path,Store.YES));
    iw.addDocument(doc);     } } }



           查找索引:
Directory dir = FSDirectory.open(new File("E:\\work_inspur\\lucene\\index"));//打开索引位置
IndexReader ir = DirectoryReader.open(dir);//读取索引
IndexSearcher searcher = new IndexSearcher(ir);
Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_46);
QueryParser parser = new QueryParser(Version.LUCENE_46, "content", analyzer);
Query query = parser.parse("顶");//查找内容
TopDocs topDocs = searcher.search(query, 100);
  ScoreDoc[] hits = topDocs.scoreDocs;
  List<WMap> list = new ArrayList<WMap>();//查找结果
然后可以根据MAP键值对对其中索引中的内容进行提取输出,例如如下:
 for (ScoreDoc sd : hits) {
   Document d = searcher.doc(sd.doc);
   WMap m = new WMap();
   m.set("content", d.get("content"));
   System.out.println(d.get("name")+"------"+d.get("content"));
   list.add(m); //以list的形式输出来
  }

         删除索引:

 Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_46);
  Directory dire = FSDirectory.open(new File("E:\\work_inspur\\lucene\\index"));    
  IndexWriterConfig iwc = new IndexWriterConfig(Version.LUCENE_46, analyzer); 
  IndexWriter iw = new IndexWriter(dire, iwc);
  iw.deleteAll();//删除所有索引
  iw.commit();

【四旋翼无人机】具备螺旋桨倾斜机构的全驱动四旋翼无人机:建模与控制研究(Matlab代码、Simulink仿真实现)内容概要:本文围绕具备螺旋桨倾斜机构的全驱动四旋翼无人机展开研究,重点探讨其系统建模与控制策略,结合Matlab代码与Simulink仿真实现。文章详细分析了无人机的动力学模型,特别是引入螺旋桨倾斜机构后带来的全驱动特性,使其在姿态与位置控制上具备更强的机动性与自由度。研究涵盖了非线性系统建模、控制器设计(如PID、MPC、非线性控制等)、仿真验证及动态响应分析,旨在提升无人机在复杂环境下的稳定性和控制精度。同时,文中提供的Matlab/Simulink资源便于读者复现实验并进一步优化控制算法。; 适合人群:具备一定控制理论基础和Matlab/Simulink仿真经验的研究生、科研人员及无人机控制系统开发工程师,尤其适合从事飞行器建模与先进控制算法研究的专业人员。; 使用场景及目标:①用于全驱动四旋翼无人机的动力学建模与仿真平台搭建;②研究先进控制算法(如模型预测控制、非线性控制)在无人机系统中的应用;③支持科研论文复现、课程设计或毕业课题开发,推动无人机高机动控制技术的研究进展。; 阅读建议:建议读者结合文档提供的Matlab代码与Simulink模型,逐步实现建模与控制算法,重点关注坐标系定义、力矩分配逻辑及控制闭环的设计细节,同时可通过修改参数和添加扰动来验证系统的鲁棒性与适应性。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值