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/ZipInputStream.html

use getNextEntry() method

little example:

ZipInputStream zis = new ZipInputStream(fileInputStream);
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?

Thanks,

Luke


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]





-- Ernesto De Santis - Colaborativa.net Córdoba 1147 Piso 6 Oficinas 3 y 4 (S2000AWO) Rosario, SF, Argentina.




--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to