Hi Jim, I cannot see anything obvious, but both open() and terms() throw IOException's. You could try putting these in separate try..catch blocks to see which one it's coming from. Or using e.printStackTrace() in the catch block will give more info to help you debug what's happening.
On Sat, Aug 1, 2009 at 7:09 PM, <[email protected]> wrote: > reader = IndexReader.open(args[0]); > Term term = new Term("path", ""); > termsEnumerator = reader.terms(term); Cheers, Phil --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
