Mailing List Archive

Starting off with Lucene
I just downloaded lucene and built it using ant build with ivy-bootstrapper.

The command given on tutorial page :

>java org.apache.lucene.demo.IndexFiles -docs ~/lucene-4.10.0/demo/src

gave me this error:
Error: Could not find or load main class org.apache.lucene.demo.IndexFiles

Where are all the class files located. How can I get started off with this?
Re: Starting off with Lucene [ In reply to ]
Hi,

I haven't downloaded the same but you can try with this suppose,
*grep -nr "IndexFiles" .*

This command will gave you the list of the location where this file exist
then you can go before the org directory then
try to run with the same command i guess this can help.

With Regards
Aman Tandon

On Fri, Sep 5, 2014 at 8:15 PM, Ritesh Kumar Singh <
riteshoneinamillion@gmail.com> wrote:

> I just downloaded lucene and built it using ant build with
> ivy-bootstrapper.
>
> The command given on tutorial page :
>
> >java org.apache.lucene.demo.IndexFiles -docs ~/lucene-4.10.0/demo/src
>
> gave me this error:
> Error: Could not find or load main class org.apache.lucene.demo.IndexFiles
>
> Where are all the class files located. How can I get started off with this?
>