> hello all, is there any way to get all
> tokens from my index ? please anyone
> suggest me

The code below prints all terms of a field.

       String path = "E:\\ThesaurusSolrHome\\data\\index";
       String field = "contents";

        IndexReader indexReader = IndexReader.open(path);
        TermEnum termEnum = indexReader.terms();

        while (termEnum.next()) {
            Term term = termEnum.term();
            if (term.field().equalsIgnoreCase(field))
                System.out.println(term.text());

        }
        termEnum.close();
        indexReader.close();


      

---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org

Reply via email to