Results 1 to 2 of 2
- 08-25-2010, 11:41 AM #1
Member
- Join Date
- Feb 2010
- Posts
- 21
- Rep Power
- 0
How to display WildCard search values
Hi,
I'm searching using wildcard search.
For e.g I'm searching for String hou*
And I want to print all results for e.g:
house
houses
housewives and so on...
I'm using this :
How can I display all words of wildcard search?Java Code:Term term = new Term("fieldname", word); Query query = new WildcardQuery(term); int hitsPerPage = 50; IndexSearcher searcher = new IndexSearcher(directory, true); TopScoreDocCollector collector = TopScoreDocCollector.create(hitsPerPage, true); searcher.search(query, collector); ScoreDoc[] hits = collector.topDocs().scoreDocs; System.out.println("Found " + hits.length + " hits."); Document hitDoc = null; for (int i = 0; i < hits.length; ++i) { ??????????????? }
- 08-25-2010, 02:29 PM #2
Member
- Join Date
- Feb 2010
- Posts
- 21
- Rep Power
- 0
Any help?
Please I need this very much......
I tried to highlight query but it takes a very long time because my field length is very big and even so.. It doesn't gives me all wildcard search results. I'm sure that there is the word in field, but in result the word is not showed. Maybe I have a bad understanding of method getBestFragment, any help on explaining this method purpose would be very appreciated.
Similar Threads
-
Urgent Regular expression to allow only alpha characters and % wildcard
By MJoe in forum Advanced JavaReplies: 2Last Post: 06-17-2010, 12:44 PM -
Not able to highlight the search key work in wild card search
By annappa in forum LuceneReplies: 0Last Post: 10-29-2009, 09:28 AM -
How to display the elements of a List as the values of a map?
By trueblue in forum New To JavaReplies: 27Last Post: 08-27-2009, 03:05 PM -
i want to display decimal values in frame window
By santhosh_el in forum AWT / SwingReplies: 4Last Post: 03-16-2009, 09:07 AM -
make search function ike eclipse search in window->preference
By i4ba1 in forum Advanced JavaReplies: 5Last Post: 08-26-2008, 03:43 PM


LinkBack URL
About LinkBacks

Bookmarks