Re: Indexing MS Files

2004-11-10 Thread Luke Shannon
This looks great. Thank you Thierry! - Original Message - From: "Thierry Ferrero" <[EMAIL PROTECTED]> To: "Lucene Users List" <[EMAIL PROTECTED]> Sent: Wednesday, November 10, 2004 12:23 PM Subject: Re: Indexing MS Files > I used OpenOffice API to

Re: Indexing MS Files

2004-11-10 Thread Luke Shannon
Thanks. Grandmas around the world will certainly be surprised this Christmas. - Original Message - From: "Otis Gospodnetic" <[EMAIL PROTECTED]> To: "Lucene Users List" <[EMAIL PROTECTED]> Sent: Wednesday, November 10, 2004 12:18 PM Subject: Re:

Re: Indexing MS Files

2004-11-10 Thread Thierry Ferrero
xstorable ); // Closing the converted document xcomponent.dispose(); } catch(NoConnectException ex ) { return( "" ); } catch( IOException ex ) { return( "" ); } catch( Exception ex ) { return( "" ); } // Returni

Re: Indexing MS Files

2004-11-10 Thread Otis Gospodnetic
From: "Otis Gospodnetic" <[EMAIL PROTECTED]> > To: "Lucene Users List" <[EMAIL PROTECTED]> > Sent: Wednesday, November 10, 2004 11:54 AM > Subject: Re: Indexing MS Files > > > > That's one place to start. The other one would be textmining.org,

Re: Indexing MS Files

2004-11-10 Thread Luke Shannon
Thanks Otis. I am looking forward to this book. Any idea when it may be released? - Original Message - From: "Otis Gospodnetic" <[EMAIL PROTECTED]> To: "Lucene Users List" <[EMAIL PROTECTED]> Sent: Wednesday, November 10, 2004 11:54 AM Subject: Re: Indexi

Re: Indexing MS Files

2004-11-10 Thread Otis Gospodnetic
That's one place to start. The other one would be textmining.org, at least for Word files. I used both POI and Textmining API in Lucene in Action, and the latter was much simpler to use. You can also find some comments about both libs in lucene-user archives. People tend to like Textmining API b

Indexing MS Files

2004-11-10 Thread Luke Shannon
I need to index Word, Excel and Power Point files. Is this the place to start? http://jakarta.apache.org/poi/ Is there something better? Thanks, Luke