K
Keith
I'm using the code from http://lucene.apache.org/java/2_1_0/demo.html
that I'm adapting.
The final application will be a CD-ROM search through a set of
documents on a CD_ROM.
I'd like to be able to limit searches to a sub-set of the documents,
identifiable by the first two letters of the filename.
I thought I'd be able to do this using a filtered query, but I can't
figure out how.
QueryFilter qf = new QueryFilter(filterString);
just gives me
The constructor QueryFilter(String) is undefined
How can I constrain the query to only return documents contained in
files whose name begin "CP", for example?
K.
that I'm adapting.
The final application will be a CD-ROM search through a set of
documents on a CD_ROM.
I'd like to be able to limit searches to a sub-set of the documents,
identifiable by the first two letters of the filename.
I thought I'd be able to do this using a filtered query, but I can't
figure out how.
QueryFilter qf = new QueryFilter(filterString);
just gives me
The constructor QueryFilter(String) is undefined
How can I constrain the query to only return documents contained in
files whose name begin "CP", for example?
K.