16-luncec.net用法

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Lucene.Net.Analysis;
using Lucene.Net.Analysis.PanGu;
using Lucene.Net.Analysis.Standard;
using Lucene.Net.Documents;
using Lucene.Net.Index;
using Lucene.Net.Search;
using Lucene.Net.Store;
using NSharp.SearchEngine.Lucene.Analysis.Cjk;
using PanGu.Dict;

namespace y_lucen.net
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        /// <summary>
        /// 一元分词
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button1_Click(object sender, EventArgs e)
        {
            //分词算法的基类
            Analyzer analyzer=new StandardAnalyzer();//指定一元分词算法
            TokenStream tokenStream = analyzer.TokenStream("", new StringReader("北京,HI欢迎你们大家"));//读取
            Lucene.Net.Analysis.Token token= null;
            while ((token=tokenStream.Next())!=null)
            {
                listBox1.Items.Add(token.TermText());
            }

        }
        /// <summary>
        /// 二元分词
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button2_Click(object sender, EventArgs e)
        {
            Analyzer analyzer = new CJKAnalyzer();//指定二元分词算法
            TokenStream tokenStream = analyzer.TokenStream("", new StringReader("北京,HI欢迎你们大家"));//读取
            Lucene.Net.Analysis.Token token = null;
            while ((token = tokenStream.Next()) != null)
            {
                listBox1.Items.Add(token.TermText());
            }
        }
        /// <summary>
        /// 盘古分词
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button3_Click(object sender, EventArgs e)
        {
            Analyzer analyzer = new PanGuAnalyzer();//指定盘古分词算法
            TokenStream tokenStream = analyzer.TokenStream("", new StringReader("北京,HI欢迎你们大家,公共场合,大师说发放时安防监控了房间爱都十分理解是浪费就爱上"));//读取
            Lucene.Net.Analysis.Token token = null;
            while ((token = tokenStream.Next()) != null)
            {
                listBox1.Items.Add(token.TermText());
            }
            //WordDictionary word=new WordDictionary();
            //word.InsertWord(,);
        }

        private void button4_Click(object sender, EventArgs e)
        {
            //指定lucene.net要存储的目录
            string indexPath = @"D:\lucenedir";//注意和磁盘上文件夹的大小写一致,否则会报错。将创建的分词内容放在该目录下。

            //打开用来存储数据的目录
            FSDirectory directory=FSDirectory.Open(new DirectoryInfo(indexPath));//指定索引文件(打开索引目录)FS值得是就是FileSystem

            //对目录中数据进行读取
            bool isUpdate = IndexReader.IndexExists(directory);//indexReader:对索引进行读取的类,该语句的作用:判断索引库文件夹是否存在以及所以特征文件是否存在
            if (isUpdate)
            {
                //同时只能有一段代码对索引库进行写操作。当使用IndexWriter打开directory时会自动对索引库文件上锁。
                //如果索引目录被锁定(比如索引过程中程序异常退出),则首先解锁(提示一下:如果我现在正在写着已经加锁了,但是还没有写完,这时候又来一个请求,那么久不解锁呀?这个问题后面会解决)
                if (IndexWriter.IsLocked(directory))
                {
                    IndexWriter.Unlock(directory);
                }
            }
            //lucene.net文件,分词算法,数据库是否存在不存在就创建
            IndexWriter writer=new IndexWriter(directory,new PanGuAnalyzer(),isUpdate,Lucene.Net.Index.IndexWriter.MaxFieldLength.UNLIMITED);//向索引库中写索引。这是在这里加锁
            for (int i = 1; i < +10; i++)
            {
                string txt = File.ReadAllText(@"D:\abc\aa\测试文件\" + i + ".txt", System.Text.Encoding.Default);//注意这个地方的编码
                Document document=new Document();//表示一篇文档
                //Field.Sote.YES:表示是否存储原值。只有当Field.Stord.YES在后面才能用doc.Get("number")取出值来,Field.Index.NOT_ANALYZED:不进行分词保存.
                document.Add((new Field("number",i.ToString(),Field.Store.YES,Field.Index.NOT_ANALYZED)));
                //Field.Index.ANALYZED:进行分词保存:也就是要进行全文的字段要设置分词保存(因为要进行模糊查询)
                //Lucene.Net.Documents.Field.TermVector.WITH_POSTITIONS_OFFSETS:不仅保存分词还保存分词的距离。
                document.Add(new Field("body",txt,Field.Store.YES,Field.Index.ANALYZED,Lucene.Net.Documents.Field.TermVector.WITH_POSITIONS_OFFSETS));
                writer.AddDocument(document);

            }
            writer.Close();//会自动解锁
            directory.Close();//不要忘记Close,否则索引结果搜不到
        }

        private void button5_Click(object sender, EventArgs e)
        {
            string indexPath = @"D:\lucenedir";
            string kw = "面向对象";//搜索的关键词
            //打开文件
            FSDirectory directory=FSDirectory.Open(new DirectoryInfo(indexPath),new NoLockFactory());
            //打开文件
            IndexReader reader=IndexReader.Open(directory,true);
            IndexSearcher searcher=new IndexSearcher(reader);
            //搜索条件
            PhraseQuery query=new PhraseQuery();
            //foreach (string word in kw.Split(‘ ‘))//先用空格,让用户去分词,空格分隔的就是词“计算机 专业”
            //{
            //    query.Add(new Term("body",word));
            //}
            //query.Add(new Term("body","语言"));//可以添加查询条件,两则是add关系,顺序没有关系
            //query.Add((new Term("body","大学生")));
            query.Add(new Term("body",kw));//body中含有kw的文章
            query.SetSlop(100);//多个查询条件之间的最大距离。在文章中像个太远也就无意义。(例如“大学生”这个查询条件和“简历”这个查询条件之间如果间隔的词太多就没有意义了)、
            //TopScoreDocCollector是盛放查询结构的容器
            TopScoreDocCollector collector=TopScoreDocCollector.create(1000,true);
            searcher.Search(query, null, collector);//根据query查询条件进行查询,查询结构放入collector容器
            ScoreDoc[] docs = collector.TopDocs(0, collector.GetTotalHits()).scoreDocs;//得到素有查询结果中的文档,GetTotalHits();表示总条数 TopDocs(300,20);表示得到 300(从300开始),到320(结束)的文档内容
            //可以用来实现分页功能
            this.listBox1.Items.Clear();
            for (int i = 0; i < docs.Length; i++)
            {
                int docId = docs[i].doc;//得到查询结果文档的id(Lucene内部分配的id)
                Document doc = searcher.Doc(docId);
                this.listBox1.Items.Add(doc.Get("number") + "\r\n");
                this.listBox1.Items.Add(doc.Get("body") + "\r\n");
                this.listBox1.Items.Add("-------------\r\n");
            }
        }
    }
}
时间: 2024-11-16 15:45:29

16-luncec.net用法的相关文章

加密解密16进制用法:

1.Base64 :  26个英文字母大小写+10个阿拉伯数字+“+ =”  一共64个: 2.3DES: public static byte[] encrypt(byte[] key,byte[] data){ SecretKey secretKey=new SecretKeySpec(key, "DESede"); try { Cipher cipher=Cipher.getInstance("DESede"); cipher.init(Cipher.ENCR

apt-get用法

1. 安装 软件包 apt-get install PackageName                 // 普通安装 apt-get install PackageName=VersionName     // 安装指定包的指定版本 apt-get --reinstall install PackageName     // 重新安装 apt-get build-dep PackageName               // 安装源码包所需要的编译环境 apt-get -f instal

linux系统维护常用命令

网络命令: # ifconfig# 显示网络信息,包括IP地址.数据包接收/发送情况 # ifconfig eth0 up# 启动eth0 # vi /etc/sysconfig/network-scripts/ifcfg-eth0 # 更改eth0配置文件 # iwconfig # 显示无线网络信息 # sudo /etc/init.d/network restart | start | stop# 重启网络|启动网络|停止网络 # service network start| service

如何才能熟练使用 Android Studio?

推荐购买<精通AndroidStudio> 编辑推荐 资深Android开发工程师根据新版Android Studio 2.2 精心打造的<精通AndroidStudio>.详细介绍了 Android Studio 实用的功能与技巧,非常全面.系统.专业.实例丰富. 内容简介 本书以通俗易懂的语言全面系统地介绍了Android Studio实用工具和操作技巧,场景明确,步骤清晰,图文结合.全书共16章.第1章对Android Studio做概要的介绍,从特性.界面.工具.功能到环境

iOS开发中多线程间关于锁的使用

为什么需要使用锁,当然熟悉多线程的你,自然不会感到陌生. 那你在代码中是否很好的使用了锁的机制呢?你又知道几种实现锁的方法呢? main.m 1 int main(int argc, const char * argv[]) { 2 @autoreleasepool { 3 //普通用法:会看到线程1锁住之后,线程2会一直等待,直到线程1执行完,线程2才执行 4 NSLog(@"使用NSLock(普通锁:已实现NSLocking协议)实现锁"); 5 [LockByNSLock exe

文本处理三剑客之awk(报告生成器)

文本处理三剑客之awk(报告生成器) awk是一款强大的报告生成器,不同于sed和grep,它的侧重点是如何把文本信息更好的展示出来,常用与统计和格式化输出.awk相当于微型的shell,有着自己一套语法结构,例如:循环结构,数组,条件判断,函数,内置变量等功能. awk在我认为简直就是文本处理时打劫放火一大利器. 例如取出/etc/passwd中的第一列. [root@CentOS6 ~]# awk -F: '{print $1}' /etc/passwd root bin daemon ad

Matlab设置Legend横排、分块

高级用法1:指定legend显示的位置: legend({'str1','str2','strn'},'Location','SouthEast'); 比较鸡肋,画好图后树手动拖动就好了 高级用法2:指定显示某几条曲线的legend: 例如你有25条曲线,想显示其中1,6,11,16,21的legend H = plot(data); legend(H([1 6 11 16 21],'1,'6','11’,'16','21'); 高级用法3:legend横排 hl = legend(H([1 6

GO语言的各种笔记

1.:=是不能用在函数外,如果要声明全局变量请用关键字var. 2.常量是 const Name = value 3.如果变量要声明类型: xxx int:=1; 4.布尔值的类型为bool,值是true或false,默认为false. 5.GO语言的变量类型转换必须是显示转换,也就是要有相关的代码. 6.文本和其它类型不能直接通过+相连,要先转换类型. 7.GO语言的变量可以以组为单位申请 var(     i int     pi float32     prefix string ) 8.

python中filter、map、reduce的区别

python中有一些非常有趣的函数,今天也来总结一下,不过该类的网上资料也相当多,也没多少干货,只是习惯性将一些容易遗忘的功能进行整理. lambda 为关键字.filter,map,reduce为内置函数. lambda:实现python中单行最小函数. g = lambda x: x * 2 #相当于 def g(x): return x*2 filter(function, sequence):对sequence中的item依次执行function(item),将执行结果为True的ite

Linux 脚本运维总结之Shell script

1. 本地变量和环境变量 变量类型 定义形式 声明位置 显示命令 作用域 本地变量 VARNAME=value 命令行或shell脚本 set (显示所有变量) 本用户,本进程 环境变量 export VARNAME=value ~/.bash_profile (当前登陆用户有效)/etc/profile (所有登陆用户有效) env(仅显示环境变量) 所有用户所有进程 2. 脚本调试 法一 #!/bin/bash -x 法二 set -x 要调试的几行代码 set +x 3. 退出状态 exi