Yep. Here's some sample code for those who aren't sure how to use Term,
TermDocs...
IndexReader reader = IndexReader.open("c:/index");
String value = "foobar";
Term t = new Term(field, value);
TermDocs termDocs = reader.termDocs(t);
try
{
while (termDocs.next())
{
int docNumber = termDocs.doc();
Document doc = reader.document(docNumber);
System.out.println("Document:" + doc + " has " +
termDocs.freq() + " occurences of " + value);
}
}
finally
{
if (termDocs != null) termDocs.close();
}
HTH
Regards,
Kelvin
--------
The book giving manifesto - http://how.to/sharethisbook
On Thu, 30 Jan 2003 05:56:55 -0800 (PST), Otis Gospodnetic said:
>Would this be the correct answer?
>http://www.mail-archive.com/lucene-
>[EMAIL PROTECTED]/msg01738.html
>
>I haven't tested it...
>
>Otis
>
>--- Kelvin Tan <[EMAIL PROTECTED]> wrote:
>>Maybe this is a good FAQ entry, under Searching?
>>
>>
>http://www.mail-archive.com/lucene-
>[EMAIL PROTECTED]/msg01735.html
>>
>>Regards, Kelvin
>>
>>--------
>>The book giving manifesto - http://how.to/sharethisbook
>>
>>
>>
>>
>>--------------------------------------------------------------------
>>-
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, e-mail: [EMAIL PROTECTED]
>>
>
>
>__________________________________________________ Do you Yahoo!?
>Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
>http://mailplus.yahoo.com
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]