Zip Files

2005-03-01 Thread Luke Shannon
Hello; Anyone have an ideas on how to index the contents within zip files? Thanks, Luke - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Zip Files

2005-03-01 Thread Ernesto De Santis
); ZipEntry zipEntry; while(zipEntry = zis.getNextEntry() != null){ //use zipEntry to get name, etc. //get properly parser for current entry //use parser with zis (ZipInputStream) } good luck Ernesto Luke Shannon escribió: Hello; Anyone have an ideas on how to index the contents within zip files

Re: Zip Files

2005-03-01 Thread Luke Shannon
] To: Lucene Users List lucene-user@jakarta.apache.org Sent: Tuesday, March 01, 2005 10:48 AM Subject: Re: Zip Files Hello first, you need a parser for each file type: pdf, txt, word, etc. and use a java api to iterate zip content, see: http://java.sun.com/j2se/1.4.2/docs/api/java/util/zip

Re: Zip Files

2005-03-01 Thread Chris Lamprecht
the directory. But this would greatly slow indexing and use up disk space. Luke - Original Message - From: Ernesto De Santis [EMAIL PROTECTED] To: Lucene Users List lucene-user@jakarta.apache.org Sent: Tuesday, March 01, 2005 10:48 AM Subject: Re: Zip Files Hello first, you need