<small id='7DveM'></small><noframes id='7DveM'>

    1. <legend id='7DveM'><style id='7DveM'><dir id='7DveM'><q id='7DveM'></q></dir></style></legend>
        <bdo id='7DveM'></bdo><ul id='7DveM'></ul>
      <i id='7DveM'><tr id='7DveM'><dt id='7DveM'><q id='7DveM'><span id='7DveM'><b id='7DveM'><form id='7DveM'><ins id='7DveM'></ins><ul id='7DveM'></ul><sub id='7DveM'></sub></form><legend id='7DveM'></legend><bdo id='7DveM'><pre id='7DveM'><center id='7DveM'></center></pre></bdo></b><th id='7DveM'></th></span></q></dt></tr></i><div id='7DveM'><tfoot id='7DveM'></tfoot><dl id='7DveM'><fieldset id='7DveM'></fieldset></dl></div>

      <tfoot id='7DveM'></tfoot>

        C# Lucene 获取所有索引

        C# Lucene get all the index(C# Lucene 获取所有索引)
      1. <tfoot id='Xhfl4'></tfoot>
          <bdo id='Xhfl4'></bdo><ul id='Xhfl4'></ul>
                <i id='Xhfl4'><tr id='Xhfl4'><dt id='Xhfl4'><q id='Xhfl4'><span id='Xhfl4'><b id='Xhfl4'><form id='Xhfl4'><ins id='Xhfl4'></ins><ul id='Xhfl4'></ul><sub id='Xhfl4'></sub></form><legend id='Xhfl4'></legend><bdo id='Xhfl4'><pre id='Xhfl4'><center id='Xhfl4'></center></pre></bdo></b><th id='Xhfl4'></th></span></q></dt></tr></i><div id='Xhfl4'><tfoot id='Xhfl4'></tfoot><dl id='Xhfl4'><fieldset id='Xhfl4'></fieldset></dl></div>

                  <tbody id='Xhfl4'></tbody>
              1. <small id='Xhfl4'></small><noframes id='Xhfl4'>

              2. <legend id='Xhfl4'><style id='Xhfl4'><dir id='Xhfl4'><q id='Xhfl4'></q></dir></style></legend>
                  本文介绍了C# Lucene 获取所有索引的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在使用 Lucene 开发一个 Windows 应用程序.我想获取所有索引关键字并将它们用作搜索字段自动建议的来源.如何在 Lucene 中接收所有索引关键字?我是 C# 的新手.代码本身很受欢迎.谢谢.

                  I am working on a windows application using Lucene. I want to get all the indexed keywords and use them as a source for a auto-suggest on search field. How can I receive all the indexed keywords in Lucene? I am fairly new in C#. Code itself is appreciated. Thanks.

                  推荐答案

                  您是否要从索引中提取所有术语?

                  Are you looking extract all terms from the index?

                  private void GetIndexTerms(string indexFolder)
                  {
                      List<String> termlist = new ArrayList<String>();
                      IndexReader reader = IndexReader.open(indexFolder);
                      TermEnum terms = reader.terms();
                      while (terms.next()) 
                      {
                        Term term = terms.term();
                        String termText = term.text();
                        int frequency = reader.docFreq(term);
                        termlist.add(termText);
                      }
                      reader.close();
                  }
                  

                  这篇关于C# Lucene 获取所有索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  C# namespace alias - what#39;s the point?(C# 命名空间别名 - 有什么意义?)
                  Using Xpath With Default Namespace in C#(在 C# 中使用具有默认命名空间的 Xpath)
                  Generating an EDMX from a DB2 Database(从 DB2 数据库生成 EDMX)
                  IBM .NET Data Provider Connection String issue with Library List(库列表的 IBM .NET 数据提供程序连接字符串问题)
                  .NET DB2 OLEDB pre-requisites(.NET DB2 OLEDB 先决条件)
                  Referring to Code in IBM.Data.DB2 makes that Assembly Unavailable to the rest of my Solution(引用 IBM.Data.DB2 中的代码使该程序集对我的解决方案的其余部分不可用)
                  <legend id='FwCSg'><style id='FwCSg'><dir id='FwCSg'><q id='FwCSg'></q></dir></style></legend>
                  <tfoot id='FwCSg'></tfoot>
                  • <small id='FwCSg'></small><noframes id='FwCSg'>

                      <i id='FwCSg'><tr id='FwCSg'><dt id='FwCSg'><q id='FwCSg'><span id='FwCSg'><b id='FwCSg'><form id='FwCSg'><ins id='FwCSg'></ins><ul id='FwCSg'></ul><sub id='FwCSg'></sub></form><legend id='FwCSg'></legend><bdo id='FwCSg'><pre id='FwCSg'><center id='FwCSg'></center></pre></bdo></b><th id='FwCSg'></th></span></q></dt></tr></i><div id='FwCSg'><tfoot id='FwCSg'></tfoot><dl id='FwCSg'><fieldset id='FwCSg'></fieldset></dl></div>
                          <bdo id='FwCSg'></bdo><ul id='FwCSg'></ul>

                              <tbody id='FwCSg'></tbody>