diff --git a/sandbox/contributions/WordNet/src/java/org/apache/lucene/wordnet/SynLookup.java b/sandbox/contributions/WordNet/src/java/org/apache/lucene/wordnet/SynLookup.java new file mode 100644 index 00000000000..b8f4907c725 --- /dev/null +++ b/sandbox/contributions/WordNet/src/java/org/apache/lucene/wordnet/SynLookup.java @@ -0,0 +1,45 @@ +package org.apache.lucene.wordnet; + +import org.apache.lucene.store.FSDirectory; +import org.apache.lucene.search.IndexSearcher; +import org.apache.lucene.search.TermQuery; +import org.apache.lucene.search.Hits; +import org.apache.lucene.index.Term; +import org.apache.lucene.document.Document; +import java.io.IOException; + +public class SynLookup { + + public static void main(String[] args) throws IOException { + if (args.length != 2) { + System.out.println( + "java org.apache.lucene.wordnet.SynLookup "); + } + + FSDirectory directory = FSDirectory.getDirectory(args[0], false); + IndexSearcher searcher = new IndexSearcher(directory); + + String word = args[1]; + Hits hits = searcher.search( + new TermQuery(new Term("word", word))); + + if (hits.length() == 0) { + System.out.println("No synonyms found for " + word); + } else { + System.out.println("Synonyms found for \"" + word + "\":"); + } + + for (int i = 0; i < hits.length(); i++) { + Document doc = hits.doc(i); + + String[] values = doc.getValues("syn"); + + for (int j = 0; j < values.length; j++) { + System.out.println(values[j]); + } + } + + searcher.close(); + directory.close(); + } +}