首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >如何将lucene.net分析仪与lucene.net结合使用?

如何将lucene.net分析仪与lucene.net结合使用?
EN

Stack Overflow用户
提问于 2014-11-28 06:29:58
回答 1查看 134关注 0票数 1

请指导我如何使用Lucene.net的日语分析器(Lucene.net).同时也建议我为Lucene.net提供一些支持日语的好分析器。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2014-12-06 20:02:35

Lucene.Net分析器似乎没有移植到Lucene.Net上.您可以在他们的github页面上提出请求,也可以通过移植和提交拉请求来帮助他们。

一旦该分析器存在并使用文章这里 --使用它们的基本代码,只需更改分析器:

代码语言:javascript
运行
AI代码解释
复制
string strIndexDir = @"D:\Index";
Lucene.Net.Store.Directory indexDir = Lucene.Net.Store.FSDirectory.Open(new System.IO.DirectoryInfo(strIndexDir));
Analyzer std = new JapaneseAnalyzer(Lucene.Net.Util.Version.LUCENE_29); //Version parameter is used for backward compatibility. Stop words can also be passed to avoid indexing certain words
IndexWriter idxw = new IndexWriter(indexDir, std, true, IndexWriter.MaxFieldLength.UNLIMITED);     

//Create an Index writer object.
Lucene.Net.Documents.Document doc = new Lucene.Net.Documents.Document();
Lucene.Net.Documents.Field fldText = new Lucene.Net.Documents.Field("text", System.IO.File.ReadAllText(@"d:\test.txt"), Lucene.Net.Documents.Field.Store.YES, Lucene.Net.Documents.Field.Index.ANALYZED, Lucene.Net.Documents.Field.TermVector.YES);
doc.Add(fldText);

//write the document to the index
idxw.AddDocument(doc);

//optimize and close the writer
idxw.Optimize();
idxw.Close();
Response.Write("Indexing Done");
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/27190824

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
查看详情【社区公告】 技术创作特训营有奖征文